import type { ReactElement } from "react";
import type { MeshProps } from "@react-three/fiber";
export interface SweptSurfaceProps extends Omit<MeshProps, "geometry"> {
    resolutionU?: number;
    resolutionV?: number;
    color?: string;
    wireframe?: boolean;
    children: ReactElement | ReactElement[];
}
export declare const SweptSurface: ({ resolutionU, resolutionV, color, wireframe, children, ...meshProps }: SweptSurfaceProps) => import("react/jsx-runtime").JSX.Element | null;
