import React from "react"; export interface ColorScheme { primary: string; secondary: string; accent: string; neutral: string; success: string; warning: string; error: string; info: string; background: string; surface: string; text: string; } export interface GlassColorSchemeGeneratorProps extends React.HTMLAttributes { /** Initial color scheme */ initialScheme?: Partial; /** Whether to show advanced options */ advanced?: boolean; /** Whether to generate CSS variables */ generateCSS?: boolean; /** Whether to generate Tailwind config */ generateTailwind?: boolean; /** Custom className */ className?: string; /** Compact preview/card layout */ compact?: boolean; /** Bound the generator inside its parent container */ contained?: boolean; /** Maximum height for compact/contained generators */ maxHeight?: number | string; /** Change handler */ onSchemeChange?: (scheme: ColorScheme) => void; /** Export handler */ onExport?: (scheme: ColorScheme, format: "css" | "json" | "tailwind") => void; "data-testid"?: string; "aria-label"?: string; } declare const GlassColorSchemeGenerator: React.ForwardRefExoticComponent>; export { GlassColorSchemeGenerator }; //# sourceMappingURL=GlassColorSchemeGenerator.d.ts.map