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