import { Geometry } from '../Geometry';
import { Row } from './Row';
import type { TableBlock, BlockMap } from '../BlockStruct';
export declare class Table {
    block: TableBlock;
    confidence: number;
    geometry: Geometry;
    id: string;
    rows: Row[];
    constructor(block: TableBlock, blockMap: BlockMap);
    toString(): string;
    toArray(): string[][];
}
//# sourceMappingURL=Table.d.ts.map