import type { ReactElement } from "react";
import type { MeshProps } from "@react-three/fiber";
export interface TrimmedSurfaceProps extends Omit<MeshProps, "geometry"> {
    color?: string;
    trimCurveResolution?: number;
    adaptiveMaxAngleDeg?: number;
    adaptiveMaxDepth?: number;
    wireframe?: boolean;
    world?: boolean;
    children?: ReactElement | ReactElement[];
}
export declare function TrimmedSurface({ color: _color, trimCurveResolution, adaptiveMaxAngleDeg, adaptiveMaxDepth, wireframe: _wireframe, world, children, ...meshProps }: TrimmedSurfaceProps): import("react/jsx-runtime").JSX.Element | null;
