import { ConfusableWeights } from './index.js'; /** * Per-font confusable weight maps for 74 macOS system fonts. * * Each font's map contains only the high-risk pairs (visual score >= 0.7) that * are visually confusable when the target character renders in that specific font. * This gives 10-28x less data than the universal CONFUSABLE_WEIGHTS map. * * Usage: * import { FONT_SPECIFIC_WEIGHTS } from "namespace-guard/font-specific-weights"; * const weights = FONT_SPECIFIC_WEIGHTS["Arial"]; * * Platform: darwin arm64 25.2.0 (macos-m1-system-230fonts) * * @licence CC-BY-4.0 (data); MIT (code) * @attribution Paul Wood FRSA, confusable-vision * @see https://github.com/paultendo/confusable-vision */ declare const FONT_SPECIFIC_WEIGHTS: Record; export { FONT_SPECIFIC_WEIGHTS };