export interface BoxOptions { title?: string; padding?: number; margin?: number; borderStyle?: 'single' | 'double' | 'round' | 'bold' | 'classic'; borderColor?: string; textAlignment?: 'left' | 'center' | 'right'; } export declare function createBox(content: string, options?: BoxOptions): string; export declare function titleBox(title: string, subtitle?: string): string; export declare function infoBox(content: string, title?: string): string; export declare function warningBox(content: string, title?: string): string; export declare function errorBox(content: string, title?: string): string; export declare function successBox(content: string, title?: string): string; export declare function banner(version: string, tagline: string): string; //# sourceMappingURL=box.d.ts.map