import { HTMLAttributes } from 'react'; /** * AuroraBackground — Boff UI 2.0 living glass backdrop. An absolutely-positioned, * pointer-events-none decorative layer of soft blurred accent "aurora" blobs that * drift slowly behind hero zones / page headers / empty states. It NEVER moves * page content (it sits at -z-10 behind), and the drift animation is neutralised * by `data-reduce-motion` / `prefers-reduced-motion` (the blobs go static). * * Pair with glass surfaces on top for the real depth-of-field glass effect. */ export interface AuroraBackgroundProps extends HTMLAttributes { /** Visual strength of the aurora. */ intensity?: 'subtle' | 'normal' | 'vivid'; /** Optional decorative hero image layered under the aurora (served from /illustrations). */ image?: string; } export declare function AuroraBackground({ intensity, image, className, ...props }: AuroraBackgroundProps): import("react/jsx-runtime").JSX.Element; export declare namespace AuroraBackground { var displayName: string; } //# sourceMappingURL=aurora-background.d.ts.map