import Animation, { IAnimation } from "./Animation"; import { EasingFunction } from "./easings"; export default class BlendedAnimation extends Animation { fromAnimation: IAnimation; toAnimation: IAnimation; properties: string[]; private easing; constructor(fromAnimation: IAnimation, toAnimation: IAnimation, easing?: EasingFunction); updateKeyframes(): void; update(time: number): this; clone(): BlendedAnimation; }