export declare type BoxOptions = { title: string; width: number; height: number; str: string; drawExtension?: boolean; }; export declare function drawBox({ title, width, height, str, drawExtension }: BoxOptions): string;