import { MathBox } from "document-schema.js"; //#region src/mathml/layout-types.d.ts type MathDiagnosticKind = "unsupported-element" | "missing-glyph"; interface MathDiagnostic { readonly kind: MathDiagnosticKind; readonly detail: string; } interface MathLayoutResult { readonly box: MathBox; readonly diagnostics: readonly MathDiagnostic[]; } //#endregion export { MathDiagnostic, MathDiagnosticKind, MathLayoutResult };