import { DocumentIoType } from "kryo/types/document"; import { Uint16 } from "semantic-types"; import { CsmTableHint } from "../text/csm-table-hint"; import { FontAlignmentZone } from "../text/font-alignment-zone"; import { _Tag } from "./_tag"; import { TagType } from "./_type"; export interface DefineFontAlignZones extends _Tag { readonly type: TagType.DefineFontAlignZones; readonly fontId: Uint16; readonly csmTableHint: CsmTableHint; readonly zones: ReadonlyArray; } export declare const $DefineFontAlignZones: DocumentIoType;