export type InterpolationTypes = 'linear' | 'smooth' | 'step'; export type RadialInterpolationTypes = 'linear' | 'smooth'; /** * Helper function for interpolation. */ export declare function interpolate(type: InterpolationTypes | RadialInterpolationTypes): import('d3-shape').CurveFactory;