import { NurbsSurface } from "../core";
import type { SurfaceGeometry } from "./useNurbsSurface";
export interface UseInterpolatedSurfaceOptions {
    points: number[][][];
    degreeU?: number;
    degreeV?: number;
    resolutionU?: number;
    resolutionV?: number;
}
export interface UseInterpolatedSurfaceResult {
    surface: NurbsSurface | null;
    geometry: SurfaceGeometry | null;
}
export declare function useInterpolatedSurface({ points, degreeU, degreeV, resolutionU, resolutionV, }: UseInterpolatedSurfaceOptions): UseInterpolatedSurfaceResult;
