type TerminalSupport = { hyperlinks: boolean; color: boolean; }; export declare const UI_COLORS: { SORBET: string; MARIGOLD: string; MARIGOLD_DARK: string; }; export declare function uiLine(): void; export declare function getTerminalUISupport(): TerminalSupport; export declare function uiLink(linkText: string, url: string): string; export declare function uiAccountDescription(accountId?: number | null, bold?: boolean): string; export declare function uiInfoSection(title: string, logContent: () => void): void; export declare function uiCommandReference(command: string, withQuotes?: boolean): string; export declare function uiAuthCommandReference({ accountId, qa, }?: { accountId?: number | string; qa?: boolean; }): string; export declare function uiFeatureHighlight(features: string[], title?: string): void; export declare function uiBetaTag(message: string, log?: true): undefined; export declare function uiBetaTag(message: string, log: false): string; export declare function uiDeprecatedTag(message: string, log?: true): undefined; export declare function uiDeprecatedTag(message: string, log: false): string; export declare function uiCommandDisabledBanner(command: string, url?: string, message?: string): void; export declare function uiDeprecatedDescription(message: string, command: string, url?: string): undefined; export declare function uiCommandRenamedDescription(describe: string | false | undefined, newCommand: string): string | undefined; export declare function uiDeprecatedMessage(command: string, url?: string, message?: string): void; export declare function uiCommandRelocatedMessage(newCommand: string): void; export declare function indent(level: number): string; export {};