/** * Themes para el REPL. Tabla de colores intercambiable. * * Configurado en sq.toml: * [display] * theme = "dark" | "light" | "solarized" | "nord" */ export interface Theme { primary: string; secondary: string; success: string; warning: string; error: string; user: string; assistant: string; bar: string; } declare const RESET = "\u001B[0m"; export declare function setTheme(name: string): void; export declare function theme(): Theme; export { RESET }; //# sourceMappingURL=themes.d.ts.map