export declare enum BoxSymbol {
    topLeft = 0,
    topRight = 1,
    bottomRight = 2,
    bottomLeft = 3,
    vertical = 4,
    horizontal = 5,
    leftT = 6,
    rightT = 7,
    bottomT = 8,
    topT = 9,
    cross = 10
}
/**
 * The characters used to draw the box plot.
 * top-left, top-right, bottom-right, bottom-left, vertical, horizontal, left-T, right-T, bottom-T, top-T, cross
 */
export declare const boxSymbols: string[];
export declare const histoCharsBottomToTop: string[];
export declare const histoCharsLeftToRight: string[];
