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