export interface TerminalOptions { noColor?: boolean | undefined; } export declare function setGlobalNoColor(value: boolean): void; export declare function bold(text: string, opts?: TerminalOptions): string; export declare function dim(text: string, opts?: TerminalOptions): string; export declare function cyan(text: string, opts?: TerminalOptions): string; export declare function yellow(text: string, opts?: TerminalOptions): string; export declare function red(text: string, opts?: TerminalOptions): string; export declare function green(text: string, opts?: TerminalOptions): string; export declare function magenta(text: string, opts?: TerminalOptions): string; export declare function brand(text: string, opts?: TerminalOptions): string; export declare function brandRows(rows: Array<{ label: string; value: string; }>, opts?: TerminalOptions): string; export declare function success(text: string, opts?: TerminalOptions): string; export declare function note(text: string, opts?: TerminalOptions): string; export declare function error(text: string, opts?: TerminalOptions): string; export declare function warn(text: string, opts?: TerminalOptions): string; export interface DevServerBannerOptions { target: string; url: string; port: number; agents: string[]; noColor?: boolean; portWarning?: string; } export declare function devServerBanner(options: DevServerBannerOptions): string; export declare function buildSummaryBanner(result: { outDir: string; manifestPath: string; jobs: string[]; agents: string[]; provenancePath?: string | undefined; provenanceSignaturePath?: string | undefined; attestationPath?: string | undefined; sbomPath?: string | undefined; dockerImage?: string | undefined; imageSbomPath?: string | undefined; warnings: string[]; }, opts?: TerminalOptions): string; export declare function deploySummaryBanner(result: { target: string; outDir: string; preview?: boolean | undefined; }, opts?: TerminalOptions): string; export declare function loadCliVersion(): string; export declare function cliHeader(opts?: TerminalOptions): string; //# sourceMappingURL=terminal.d.ts.map