/** * AuraGlass WebGL Glass Shaders * Advanced GPU-accelerated glass effects */ import React from "react"; interface ShaderProps { className?: string; style?: React.CSSProperties; variant?: "refraction" | "dispersion" | "frosted" | "crystal" | "prism"; intensity?: number; animated?: boolean; interactive?: boolean; backgroundColor?: string; renderMode?: "auto" | "webgl" | "css"; respectMotionPreference?: boolean; compact?: boolean; contained?: boolean; preview?: boolean; height?: number | string; maxHeight?: number | string; } export declare function GlassWebGLShader({ className, variant, intensity, animated, interactive, backgroundColor, renderMode, respectMotionPreference, compact, contained, preview, height, maxHeight, style, }: ShaderProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=GlassWebGLShader.d.ts.map