export declare function styledIntro(command: string): void; export declare function styledOutro(message?: string): void; export declare function styledWarn(message: string): void; export declare function styledError(message: string): void; export declare function styledSuccess(message: string): void; export declare function styledInfo(message: string): void; export declare function styledMessage(content: string): void; export declare function styledNote(content: string, title: string): void; export declare function styledConfirm(message: string, opts?: { active?: string; inactive?: string; initialValue?: boolean; }): Promise; export declare function styledText(message: string, opts?: { placeholder?: string; validate?: (value: string) => string | undefined; }): Promise; export declare function styledTable(headers: string[], rows: (string | number | null | undefined)[][], opts?: { rightAlign?: number[]; }): string; export declare function styledKeyValue(pairs: [string, string][]): string; export declare function formatBold(text: string): string; export declare function formatDim(text: string): string; export declare function formatCyan(text: string): string; export declare function formatGreen(text: string): string; export declare function formatYellow(text: string): string; export declare function formatRed(text: string): string; export declare function formatSeparator(): string;