/** * Outer CLI / doctor / help styling. Palette aligns with `.primus/themes/primus-blueprint.json`. */ export declare const RESET = "\u001B[0m"; /** Blueprint workshop palette (keep in sync with theme vars). */ export declare const INK: string; export declare const STEEL: string; export declare const CYAN: string; export declare const GRID: string; export declare const SAGE: string; export declare const AMBER: string; export declare const ROSE: string; export declare const PANEL: string; export declare function printInfo(text: string, writer?: (line: string) => void): void; export declare function printSuccess(text: string, writer?: (line: string) => void): void; export declare function printWarning(text: string, writer?: (line: string) => void): void; export declare function printError(text: string, writer?: (line: string) => void): void; export declare function printSection(title: string, writer?: (line: string) => void): void; export declare function printAsciiHeader(lines: readonly string[], writer?: (line: string) => void, options?: { subtitleLines?: string[]; }): void; export declare function printPanel(title: string, writer?: (line: string) => void, subtitleLines?: string[]): void;