/** * CLI branding and welcome banner. */ export type LogoStyle = 'default' | 'compact' | 'minimal'; /** * Generate ASCII art logo */ export declare function generateLogo(style?: LogoStyle): string; /** * Display the welcome banner */ export declare function showBanner(options?: { version?: string; compact?: boolean; }): void; /** * Show a success message in a box */ export declare function showSuccess(title: string, messages: string[]): void; /** * Show an error message in a box */ export declare function showError(title: string, messages: string[]): void; /** * Show a tip/hint box */ export declare function showTip(content: string): void; /** * Show next steps in a formatted way */ export declare function showNextSteps(steps: Array<{ step: string; command?: string; }>): void; /** * Show a divider line */ export declare function showDivider(): void; //# sourceMappingURL=banner.d.ts.map