/** Border characters interface. */ export interface IBorder { top: string; topMid: string; topLeft: string; topRight: string; bottom: string; bottomMid: string; bottomLeft: string; bottomRight: string; left: string; leftMid: string; mid: string; midMid: string; right: string; rightMid: string; middle: string; } /** Default border characters. */ export declare const border: IBorder;