export type Definition = (from: T, to: T) => (time: number) => T; export declare const number: Definition; export declare const object: Definition<{ [key: string]: number; }>; export declare const unit: Definition; export declare const color: Definition; export declare const transform: Definition;