import type { ObservationStore, SessionStore } from "../store/ports"; export declare function findAgentsMdFiles(projectPath: string, filename: string): Promise; export declare function removeManagedSection(content: string): string; export declare function cleanFolderContext(projectPath: string, filename: string, dryRun?: boolean): Promise<{ files: string[]; changed: number; }>; export declare function purgeFolderContext(projectPath: string, filename: string): Promise<{ deleted: number; files: string[]; }>; export declare function rebuildFolderContext(projectPath: string, sessions: SessionStore, observations: ObservationStore, options: { maxDepth: number; mode: "dispersed" | "single"; filename: string; }, dryRun?: boolean): Promise<{ observations: number; filesTouched: number; }>; //# sourceMappingURL=folder-context-maintenance.d.ts.map