import { DeepPartial } from '../deep-partial'; import { Easing } from '../easing'; import { TweenOptions } from './opts'; import { Tween } from './tween'; export declare class TweenBuilder { private readonly opts; constructor(opts?: Partial); length(length: number): TweenBuilder; easing(easing: Easing): TweenBuilder; tween(target: T, propDests: DeepPartial): Tween; }