/*! * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. */ export declare class AnimationHelper { static smoothStep(value: number): number; static damp(value: number, target: number, threshold: number, dampening: number): number; }