import type { LineProps } from "@react-three/drei";
export interface InterpolatedCurveProps extends Omit<LineProps, "points" | "resolution"> {
    throughPoints: number[][];
    degree?: number;
    resolution?: number;
    color?: string;
}
export declare const InterpolatedCurve: ({ throughPoints, degree, resolution, color, ...lineProps }: InterpolatedCurveProps) => import("react/jsx-runtime").JSX.Element | null;
