interface FrostedGlassProps { /** * Blur radius in pixels * @default 16 */ blur?: number; /** * Border radius in pixels * @default 0 */ borderRadius?: number; /** * Additional CSS classes */ className?: string; } /** * FrostedGlass component creates an Apple-inspired frosted glass effect * using backdrop-filter with extended backdrop to capture nearby elements. * * Based on Josh Comeau's method: https://www.joshwcomeau.com/css/backdrop-filter/ * * Key features: * - Extended backdrop (height: 200%) to capture nearby elements for blur * - SVG mask for rounded corners * - Gradient background to prevent top-edge flickering * - Pointer events disabled to allow interactions * - Feature queries for browser support */ declare function FrostedGlass({ blur, borderRadius, className, }: FrostedGlassProps): import("react/jsx-runtime").JSX.Element; export { FrostedGlass }; export type { FrostedGlassProps }; //# sourceMappingURL=frosted-glass.d.ts.map