export type BlurSize = "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl";
interface ReflectBackgroundProps {
    backdropBlurAmount?: BlurSize;
    className?: string;
}
export declare function ReflectBackground({ backdropBlurAmount, className, }: ReflectBackgroundProps): React.ReactNode;
export default ReflectBackground;
