import { InterpolateOptions, FloatArray } from '../types'; import { Path } from '../path'; export declare function interpolatePath(paths: Path[], options: InterpolateOptions): (offset: number) => string; export declare function mixPoints(a: FloatArray, b: FloatArray, o: number): FloatArray;