export interface Theme { colorScheme?: "light" | "dark"; background?: string; foreground?: string; muted?: string; mutedForeground?: string; popover?: string; popoverForeground?: string; border?: string; input?: string; card?: string; cardForeground?: string; primary?: string; primaryForeground?: string; secondary?: string; secondaryForeground?: string; accent?: string; accentForeground?: string; destructive?: string; destructiveForeground?: string; ring?: string; radius?: string; } export declare const defaultTheme: Theme; export declare const lightTheme: Theme; export declare const darkTheme: Theme;