//#region src/fts/safe-headline.d.ts
/** Sentinels for `ts_headline` — swapped to `<mark>` only after HTML escape. */
declare const HEADLINE_START_SEL = "⟦";
declare const HEADLINE_STOP_SEL = "⟧";
/** Options object for Postgres `ts_headline` matching the sentinel pair. */
declare const HEADLINE_OPTS: {
  readonly StartSel: "⟦";
  readonly StopSel: "⟧";
};
/**
 * XSS-safe `ts_headline` HTML: escape first, then swap sentinels to `<mark>`.
 */
declare function buildSafeHeadlineHtml(fragment: string): string;
//#endregion
export { HEADLINE_OPTS, HEADLINE_START_SEL, HEADLINE_STOP_SEL, buildSafeHeadlineHtml };