/** * Substring-with-character-skip fuzzy match for the persistent search * input and View 7. Pure algorithm emitted as a JS string. * * Algorithm: each character of the query must appear in the candidate * in order, but not necessarily contiguously. Score is built from: * - prefix match (start at index 0): +50 * - exact-case bonus per matched char: +1 * - contiguous-run bonus (matched-after-matched): +2 per * - shorter candidate preferred: -length * 0.01 * Returns top matches sorted by score desc, score >= 0. */ export declare function dashboardSearchJs(): string; //# sourceMappingURL=search.d.ts.map