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