export interface MossWorkspacePaths { workspaceDir: string; runtimeDir: string; sessionsDir: string; memoryDir: string; checkpointsDir: string; attachmentsDir: string; projectConfigPath: string; skillsDir: string; learnedSkillsDir: string; skillCandidatesDir: string; agentSkillsDir: string; legacyRuntimeDir: string; legacySessionsDir: string; legacyMemoryDir: string; legacyCheckpointsDir: string; legacyAttachmentsDir: string; legacyProjectConfigDir: string; legacyProjectConfigPath: string; legacySkillsDir: string; legacyLearnedSkillsDir: string; legacySkillCandidatesDir: string; legacyAgentSkillsDir: string; } export interface WorkspacePathMigrationResult { paths: MossWorkspacePaths; migratedPaths: string[]; skippedPaths: string[]; } export declare function getMossWorkspacePaths(workspaceDir: string): MossWorkspacePaths; export declare function migrateLegacyWorkspacePaths(workspaceDir: string): WorkspacePathMigrationResult; //# sourceMappingURL=workspace-paths.d.ts.map