export interface MigratedAgentFile { filename: string; from: string; to: string; action: "moved" | "removed-duplicate"; } export interface MigrateAgentFilesResult { migrated: MigratedAgentFile[]; noop: boolean; } export declare function migrateAgentFiles(vaultPath: string): MigrateAgentFilesResult; //# sourceMappingURL=migrate-agent-files.d.ts.map