import { Easing } from './../easing'; import { DeepPartial } from '../deep-partial'; export declare function tweening(target: T, end: DeepPartial, easing: Easing): Tweening; export type Tweening = (progress: number) => T; export declare function tweenInternal(start: T, end: DeepPartial, progress: number, easingFunction: Easing, writeTo: T): T;