/**
 * Valid blur sizes supported by Tailwind CSS.
 */
export type BlurSize = "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl";
/**
 * @typedef {Object} HellBackgroundProps
 * @property {BlurSize} [backdropBlurAmount] - The size of the backdrop blur to apply.
 * @property {string} [className] - Additional CSS classes to apply to the container div.
 */
interface HellBackgroundProps {
    backdropBlurAmount?: string;
    className?: string;
}
export declare function GradientBackground({ backdropBlurAmount, className, }: HellBackgroundProps): React.ReactNode;
export default GradientBackground;
