interface SearchOptions {
    query: string;
    type?: string;
    province?: string;
    projectPath?: string;
    currentProjectOnly?: boolean;
    semantic?: boolean;
    threshold?: number;
    hybrid?: boolean;
    limit?: number;
    mode?: 'literal' | 'semantic' | 'hybrid';
}
export declare function renderSearch(options: SearchOptions): Promise<void>;
export {};
//# sourceMappingURL=search.d.ts.map