interface PersistenceConfig { projectPath: string; analysisId?: string; updateSchedule: 'daily' | 'weekly' | 'on-change' | 'manual'; gitHooks?: boolean; monitoring?: boolean; notifications?: { email?: string; slack?: string; }; } interface PersistenceResult { success: boolean; filesCreated: string[]; message: string; setupInstructions: string[]; } export declare function setupPersistenceAutomation(config: PersistenceConfig): Promise; export {}; //# sourceMappingURL=setup-persistence-automation.d.ts.map