import type { ReactElement } from "react";
import type { Mesh, BufferGeometry } from "three";
import type { MeshProps } from "@react-three/fiber";
export interface CoonsPatchProps extends Omit<MeshProps, "geometry" | "ref"> {
    resolutionU?: number;
    resolutionV?: number;
    color?: string;
    wireframe?: boolean;
    children: ReactElement | ReactElement[];
}
export declare const CoonsPatch: import("react").ForwardRefExoticComponent<CoonsPatchProps & import("react").RefAttributes<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>;
