import type { DifyAccessor } from '../../accessor/dify.ts'; import type { IndexCacheStore } from '../../cache/index/store.ts'; import { PathSpec } from '../../types.ts'; export interface SearchOptions { method?: string; topK?: number; threshold?: number; mountPrefix?: string; } export declare function searchSegments(accessor: DifyAccessor, query: string, paths: readonly PathSpec[], index?: IndexCacheStore, options?: SearchOptions): Promise; //# sourceMappingURL=search.d.ts.map