import type { ReactElement } from "react";
import type { MeshProps } from "@react-three/fiber";
import type { BooleanOperation, ShapeDescriptor } from "../occt/boolean";
export interface BooleanResultProps extends Omit<MeshProps, "geometry" | "ref"> {
    shapeA: ShapeDescriptor | null;
    shapeB: ShapeDescriptor | null;
    operation: BooleanOperation;
    meshDeflection?: number;
    color?: string;
    wireframe?: boolean;
    children?: ReactElement;
}
export declare const BooleanResult: ({ shapeA, shapeB, operation, meshDeflection, color, wireframe, children, ...meshProps }: BooleanResultProps) => import("react/jsx-runtime").JSX.Element | null;
