import type { ReactElement } from "react";
export interface SurfaceIntersectionProps {
    tolerance?: number;
    lineColor?: string;
    lineWidth?: number;
    children: ReactElement[];
}
export declare const SurfaceIntersection: ({ tolerance, lineColor, lineWidth, children, }: SurfaceIntersectionProps) => import("react/jsx-runtime").JSX.Element | null;
