import type { ChalkInstance } from 'chalk'; export interface DrawBoxOptions { border?: ChalkInstance; title?: string; width?: number; padding?: number; } export declare function drawBox(content: string | string[], opts?: DrawBoxOptions): string;