import { DocumentIoType } from "kryo/types/document"; import { Uint16 } from "semantic-types"; import { _Tag } from "./_tag"; import { TagType } from "./_type"; export interface DefineCffFont extends _Tag { readonly type: TagType.DefineCffFont; readonly id: Uint16; readonly fontName: string; readonly isBold: boolean; readonly isItalic: boolean; readonly data?: Uint8Array; } export declare const $DefineCffFont: DocumentIoType;