import type { Point } from './point'; export declare type MorphFn = (from: T[], to: T[]) => (fi: number, ti: number, t: number) => Point; export declare class Morph { static coeffs: (from: T[], to: T[]) => number[]; static Nearest: MorphFn; static Linear: MorphFn; static Cubic: MorphFn; static Spline: MorphFn; }