interface PluginConfig { id: string; name: string; packageName: string; version: string; config?: unknown; } interface OldConfig { plugins?: PluginConfig[]; [key: string]: unknown; } interface NewConfig { plugins?: PluginConfig[]; [key: string]: unknown; } /** * Migration to auto-enable the Sentry plugin on all existing projects. * * Sentry was previously always-on (hardcoded in compilers). Now that it's been * extracted into plugin-observability, existing projects need the plugin entry * added so they don't lose Sentry when upgrading. */ export declare const migration027EnableSentryPlugin: import("./types.js").SchemaMigration; export {}; //# sourceMappingURL=migration-027-enable-sentry-plugin.d.ts.map