import { GlyphGeometryInfo, TextRange, TextQueryOptions } from '../types'; export declare class TextRangeQuery { private text; private glyphsByTextIndex; constructor(text: string, glyphs: GlyphGeometryInfo[]); execute(options: TextQueryOptions): TextRange[]; private findByText; private findByCharRange; private createTextRange; private calculateBounds; }