import { DocumentIoType } from "kryo/types/document"; import { Uint16 } from "semantic-types"; import { Glyph } from "../glyph"; import { _Tag } from "./_tag"; import { TagType } from "./_type"; export interface DefineGlyphFont extends _Tag { readonly type: TagType.DefineGlyphFont; readonly id: Uint16; readonly glyphs: ReadonlyArray; } export declare const $DefineGlyphFont: DocumentIoType;