import type { CortexStore } from '../db/store.js'; export type ReflexEvent = 'prompt' | 'edit' | 'cmd' | 'agent'; export interface ReflexOptions { event: ReflexEvent; prompt?: string; file?: string; cmd?: string; desc?: string; sessionId?: string; stateDir?: string; } export declare function reflectMemory(store: CortexStore, options: ReflexOptions): string; //# sourceMappingURL=reflex.d.ts.map