import { PdfOperatorSelection } from './PdfOperatorSelection.js'; import { BoundingBox, PdfPage } from './PdfPage.js'; export interface EvaluatorElement { text?: string; textColor?: string; fontFamily?: string; fontWeight?: string; fontStyle?: string; fontSize?: number; boundingBox?: BoundingBox; } export declare class PdfTextEvaluator { private page; readonly elements: EvaluatorElement[]; private current; private textColor?; private fontFamily?; private fontWeight?; private fontStyle?; private fontSize?; private cursor; private leading; private charSpacing; private transformScale; constructor(page: PdfPage); process(selection: PdfOperatorSelection): void; private processOperator; private nextElement; } //# sourceMappingURL=PdfTextEvaluator.d.ts.map