import { DocumentIoType } from "kryo/types/document"; import { Uint16 } from "semantic-types"; import { _Tag } from "./_tag"; import { TagType } from "./_type"; export interface DefineFontName extends _Tag { readonly type: TagType.DefineFontName; readonly fontId: Uint16; readonly name: string; readonly copyright: string; } export declare const $DefineFontName: DocumentIoType;