import { DeepPartial } from '../deep-partial'; import { TweenOptions } from './opts'; import { Tween } from './tween'; export type TweenFactory = (target: T, propDests: DeepPartial) => Tween; export declare function makeTweenFactory(opts: TweenOptions): TweenFactory;