import { DocumentIoType } from "kryo/types/document"; import { Uint16 } from "semantic-types"; import { Matrix } from "../matrix"; import { Rect } from "../rect"; import { TextRecord } from "../text/text-record"; import { _Tag } from "./_tag"; import { TagType } from "./_type"; export interface DefineText extends _Tag { readonly type: TagType.DefineText; readonly id: Uint16; readonly bounds: Rect; readonly matrix: Matrix; readonly records: ReadonlyArray; } export declare const $DefineText: DocumentIoType;