import { Geometry } from './Geometry';
import { Word } from './Word';
import type { BlockMap, LineBlock } from './BlockStruct';
export declare class Line {
    block: LineBlock;
    confidence: number;
    geometry: Geometry;
    id: string;
    text: string;
    words: Word[];
    constructor(block: LineBlock, blockMap: BlockMap);
    toString(): string;
}
//# sourceMappingURL=Line.d.ts.map