import type { V2Store } from './store-facade.js'; export interface SearchOpts { scope?: 'memory' | 'events'; max?: number; } export declare function searchMemory(store: V2Store, query: string, opts?: SearchOpts): string;