import type { ITheme } from 'ghostty-web'; export type TerminalTheme = Required; export declare const TERMINAL_ANSI_COLORS: readonly ["black", "red", "green", "yellow", "blue", "magenta", "cyan", "white", "brightBlack", "brightRed", "brightGreen", "brightYellow", "brightBlue", "brightMagenta", "brightCyan", "brightWhite"]; /** Uses rendered CSS overrides for UI colors and the active palette for ANSI. */ export declare function resolveTerminalTheme(themeId?: string): TerminalTheme; /** Observes applied themes, including shell-driven changes before config loads. */ export declare function observeTerminalTheme(onTheme: (theme: TerminalTheme) => void): () => void; //# sourceMappingURL=terminal-theme.d.ts.map