import type { SearchPlan } from "./types.js"; export declare function normalizeSearchText(value: string): string; export declare class QueryPlanner { build(query: string, library?: string): SearchPlan; private buildDecomposedQueries; private shouldDecompose; private segmentBySeparators; private chunkKeywords; private detectIntent; private extractVersion; }