import React from "react";
export interface GradientProps {
    baseColor: string;
    sphereColor: string;
}
declare const Gradient: React.FC<GradientProps>;
export default Gradient;
