import { Color } from '../color';
import { Painter } from '../core';
export interface BorderOptions {
    drawTop?: boolean;
    drawLeft?: boolean;
    drawRight?: boolean;
    drawBottom?: boolean;
    thickness?: number;
}
export declare function newBorderPainter(color: Color, options?: BorderOptions): Painter;
