import type { SearchAlgorithm } from "../types.js"; /** * Substring counting — the original baseline algorithm. * Exact, lowercased substring occurrence counts. Predictable but blind to * morphology, typos, and CJK word boundaries. Kept for backward compat and * as a deterministic reference. */ export declare const substringAlgorithm: SearchAlgorithm; //# sourceMappingURL=substring.d.ts.map