import type { NurbsSurface as NurbsSurfaceCore } from "../core";
export interface IsoCurvesProps {
    surface: NurbsSurfaceCore;
    countU?: number;
    countV?: number;
    color?: string;
    lineWidth?: number;
    resolution?: number;
}
export declare const IsoCurves: ({ surface, countU, countV, color, lineWidth, resolution, }: IsoCurvesProps) => import("react/jsx-runtime").JSX.Element;
