import { n as GlossaryEntity } from "./types-v9e7PIYM.mjs"; //#region src/terminfo.d.ts interface TerminfoEntitiesOptions { /** Hrefs that should render as tooltip-only hints instead of navigation. */ tooltipOnlyHrefs?: Iterable; } /** * Load terminfo.dev page entities from content/*.json. * * The order is intentional: curated glossary aliases win ambiguous names, * feature aliases come before broad categories, and the remaining page * families preserve terminfo.dev's existing link-precedence behavior. */ declare function loadTerminfoEntities(contentDir: string, options?: TerminfoEntitiesOptions): GlossaryEntity[]; //#endregion export { TerminfoEntitiesOptions, loadTerminfoEntities };