import { DocumentIoType } from "kryo/types/document"; import { Sint16, Uint16 } from "semantic-types"; import { Rect } from "../rect"; import { KerningRecord } from "./kerning-record"; export interface FontLayout { ascent: Uint16; descent: Uint16; leading: Sint16; advances: Sint16[]; bounds: Rect[]; kerning: KerningRecord[]; } export declare const $FontLayout: DocumentIoType;