export interface ThreeDSurfaceProps {
    /**
     * Color ramp for surface height — low to high.
     * Use useChartColors().sequential.blue(5).
     */
    colorRange: string[];
    opacity?: number;
    wireframe?: boolean;
}
/**
 * 3D surface mesh. Data should be a grid of points with x, y (height), z.
 * Points are triangulated in order and colored by y-value.
 */
export declare function ThreeDSurface({ colorRange, opacity, wireframe, }: ThreeDSurfaceProps): import("react").JSX.Element;
//# sourceMappingURL=ThreeDSurface.d.ts.map