export declare class SnapshotManager { private snapshotFilePath; private indexedCodebases; private indexingCodebases; constructor(); getIndexedCodebases(): string[]; getIndexingCodebases(): string[]; addIndexingCodebase(codebasePath: string): void; removeIndexingCodebase(codebasePath: string): void; addIndexedCodebase(codebasePath: string): void; removeIndexedCodebase(codebasePath: string): void; moveFromIndexingToIndexed(codebasePath: string): void; loadCodebaseSnapshot(): void; saveCodebaseSnapshot(): void; } //# sourceMappingURL=snapshot.d.ts.map