export declare const bold: (msg: string) => string; export declare const dim: (msg: string) => string; export declare const green: (msg: string) => string; export declare const red: (msg: string) => string; export declare const yellow: (msg: string) => string; export declare const cyan: (msg: string) => string; export declare const success: (msg: string) => string; export declare const error: (msg: string) => string; export declare const warn: (msg: string) => string; export declare const info: (msg: string) => string; export declare function phaseIcon(status: 'ok' | 'warn' | 'error' | 'skip' | 'skipped'): string; export declare function banner(text: string): string; export declare function box(title: string, lines: string[]): string; export declare function table(headers: string[], rows: string[][]): string; export declare function isInteractive(): boolean; export interface Spinner { start(text?: string): Spinner; succeed(text?: string): Spinner; fail(text?: string): Spinner; stop(): Spinner; text: string; } export declare function createSpinner(text: string): Spinner; export declare function stripAnsi(s: string): string; //# sourceMappingURL=ui.d.ts.map