import { Blob } from 'buffer'; import type { MathValueRecord, MathConstants, MathVariants } from './math-types'; type MathGlyphInfo = { readonly isExtendedShape: (glyphID: number) => boolean; readonly getItalicCorrection: (glyphID: number) => MathValueRecord | undefined; }; export type MathTable = { readonly constants: MathConstants; readonly variants: MathVariants; readonly glyphInfo: MathGlyphInfo; }; export declare const parseMATH: (blob: Blob, unitsPerEm: number) => Promise; export {};