export declare function packageVersion(): string; export type MigrateResult = { changed: boolean; fromVersion: string | null; toVersion: string; notes: string[]; skipped?: boolean; }; /** * Migrate only when package version ≠ daxta.config `daxtaVersion` * (or when `daxtaVersion` is missing). Otherwise no-op. * Interactive sidebar prompts run from `daxta migrate` / `daxta install` (CLI), not here. */ export declare function migrateProject(cwd?: string, options?: { force?: boolean; }): MigrateResult; export declare function reportMigration(result: MigrateResult): void;