import { Rect } from "../../struct";
import { BaseTerminal, Color } from "../../terminal";
export declare type BorderStyles = "double-bar" | "single-bar";
export declare function drawBorder(borderOptions: {
    terminal: BaseTerminal;
    foreColor?: Color;
    backColor?: Color;
    bounds: Rect;
    style: "double-bar" | "single-bar";
}): void;
