import type { BundleManagedSource } from "./types.ts"; export interface EvoBundleMigrationOptions { agentDirectory?: string; systemPromptDirectories?: string[]; skillDirectories?: string[]; memoryDirectories?: string[]; preferenceDirectories?: string[]; } export interface EvoBundleMigrationResult { assets: BundleManagedSource[]; promptPaths: string[]; skillPaths: string[]; memoryPaths: string[]; } export declare function inferAgentDirectoryForEvoRoot(evoRoot: string): string | undefined; export declare function migratePiDataToBundleSource(options: { bundleSourceDirectory: string; sources?: EvoBundleMigrationOptions; defaultAgentDirectory?: string; }): Promise; //# sourceMappingURL=migration.d.ts.map