import { Font, Glyph, Path } from "opentype.js"; /** * Converts a value into an array of glyphs based on the provided font. * * @param {T extends string | number | object} value - The value to be converted into glyphs. * @param {Font} font - The font used to convert the value into glyphs. * @returns {(Glyph & { path: Path })[]} - An array of glyphs representing the value. */ export declare function value2glyphs(value: T, font: Font): (Glyph & { path: Path; })[]; //# sourceMappingURL=value2glyphs.d.ts.map