import type { GlyphPosition } from './GlyphAtlas'; import type { Point } from './AlphaImage'; import type { PositionedGlyph } from './GlyphManager'; export type SymbolQuad = { tl: Point; tr: Point; bl: Point; br: Point; tex: { x: number; y: number; w: number; h: number; }; glyphOffset: [number, number]; }; /** * Create the quads used for rendering a text label. */ export declare function getGlyphQuads(positionedGlyphs: PositionedGlyph[], positions: Record>): SymbolQuad[]; //# sourceMappingURL=SymbolQuad.d.ts.map