import { AnimationBase } from './AnimationBase'; import type { ValueAnimationOptions } from './types'; export declare class ValueAnimation extends AnimationBase { constructor({ startValue, endValue, ...otherOptions }: ValueAnimationOptions); protected calculate(timeElapsed: number): { value: number; valueProgress: number; }; } //# sourceMappingURL=ValueAnimation.d.ts.map