/** * Per-project config directory management * * Handles migration from legacy layout and path resolution. */ import type { ProjectRegistration } from '../types'; /** * Migrate per-project config directory from the legacy layout to the current layout. * * Legacy: ~/.ai-support-agent/projects/{projectCode}/ * Current: ~/.ai-support-agent/projects/{tenantCode}/{projectCode}/ * * Older agent versions stored project data without a tenantCode path segment. * This function moves the directory once so the current code finds it in the right place. */ export declare function migrateProjectConfigDir(project: ProjectRegistration): void; //# sourceMappingURL=project-config.d.ts.map