import { BorderType } from "./border"; export type TableCellBorderPosition = "left" | "right" | "top" | "bottom" | "insideH" | "insideV" | "tl2br" | "tr2bl"; export declare class TableCellBorder { _border_type: BorderType; _size: number; _color: string; position: TableCellBorderPosition; space: number; constructor(position: TableCellBorderPosition); color(color: string): this; size(size: number): this; border_type(border_type: BorderType): this; }