export interface Border { borderTop: boolean; borderRight: boolean; borderBottom: boolean; borderLeft: boolean; } export declare function border(top: boolean, right: boolean, bottom: boolean, left: boolean): Border; export declare function border(top: boolean, rightLeft: boolean, bottom: boolean): Border; export declare function border(topBottom: boolean, rightLeft: boolean): Border; export declare function border(all: boolean): Border; export declare enum BorderCharacter { top = 1, bottom = 2, middle = 3, left = 4, right = 8, center = 12, topLeft = 5, topCenter = 13, topRight = 9, middleLeft = 7, middleCenter = 15, middleRight = 11, bottomLeft = 6, bottomCenter = 14, bottomRight = 10 } export declare function borderCharacters(...chars: string[]): { [x: string]: string; [x: number]: string; }; export declare const single: { [x: string]: string; [x: number]: string; }; export declare const double: { [x: string]: string; [x: number]: string; };