export declare const interpolate: unique symbol; export declare const isInterpolating: (x: any) => x is Interpolating; export interface Interpolating { equals(other: T): boolean; [interpolate]: (other: T, d: number) => T; }