export interface HippoMemoryConfig { autoInject: boolean; autoCapture: boolean; autoOutcome: boolean; autoSleep: boolean; autoLearnGit: boolean; autoShare: boolean; recallBudget: number; recallLimit: number; sleepThreshold: number; searchCandidateLimit: number; searchMode: "bm25" | "hybrid"; framing: "observe" | "suggest" | "assert"; projectRoot?: string; globalRoot?: string; } export declare const DEFAULT_CONFIG: HippoMemoryConfig; interface LoadConfigOptions { cwd: string; } export declare function loadConfig({ cwd }: LoadConfigOptions): HippoMemoryConfig; export {}; //# sourceMappingURL=config.d.ts.map