/** * Styling for line output — what the CLI writes outside the interactive screen. * * Replaces chalk using the engine's own ANSI vocabulary, which keeps a single * source of truth for colour: the same theme tokens apply to the wizard in the * alt-screen and to the text left behind in the terminal's history. */ /** Re-evaluates the colour capability — used in tests, when stdout is swapped. */ export declare function resetColorLevel(): void; export declare const style: { primary: (text: string) => string; success: (text: string) => string; warning: (text: string) => string; danger: (text: string) => string; muted: (text: string) => string; foreground: (text: string) => string; bold: (text: string) => string; dim: (text: string) => string; /** Highlights a file name, command or path inside a sentence. */ code: (text: string) => string; }; /** True when the terminal accepts the UI's Unicode boxes and glyphs. */ export declare function supportsUnicode(): boolean; //# sourceMappingURL=style.d.ts.map