/** Digit shaping system: Western (`latn`, 0-9) or Eastern Arabic (`arab`, ٠-٩). */ type NumeralSystem = "latn" | "arab"; /** Resolved text direction. */ type Direction = "rtl" | "ltr" | "neutral"; export type { Direction as D, NumeralSystem as N };