import { Line } from './Line.js'; import { TableData } from './TableData.js'; export declare class Table { hLines: Array; vLines: Array; constructor(line: Line); get isValid(): boolean; get rowPivots(): Array; get colPivots(): Array; add(line: Line): boolean; private intersection; private getSameHorizontal; private getSameVertical; private mergeHorizontalLines; private mergeVerticalLines; normalize(): void; verticalExists(line: Line, y1: number, y2: number): boolean; horizontalExists(line: Line, x1: number, x2: number): boolean; private findBottomLineIndex; private findVerticalLineIndexs; private getRow; toData(): TableData; } //# sourceMappingURL=Table.d.ts.map