import React from "react";
export interface LoftedSurfaceProps {
    degreeV?: number;
    resolutionU?: number;
    resolutionV?: number;
    color?: string;
    wireframe?: boolean;
    children: React.ReactNode;
}
export declare const LoftedSurface: ({ degreeV, resolutionU, resolutionV, color, wireframe, children, }: LoftedSurfaceProps) => import("react/jsx-runtime").JSX.Element | null;
