import type { IndexedDoc, SearchHit } from "./types.js"; export declare function tokens(query: string): string[]; export declare function rankHits(docs: IndexedDoc[], query: string, limit: number): SearchHit[];