/**
 * Valid blur sizes supported by Tailwind CSS.
 */
export type BlurSize = "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl";
interface HellBackgroundProps {
    backdropBlurAmount?: BlurSize;
    className?: string;
    color?: string;
}
declare function HellBackground({ backdropBlurAmount, className, color, }: HellBackgroundProps): React.ReactNode;
export default HellBackground;
//# sourceMappingURL=hell-background.d.ts.map