export type RunKind = "break" | "cite" | "code" | "emphasis" | "link" | "strong" | "text"; export interface Run { readonly href?: string; readonly kind: RunKind; readonly text: string; }