export type MigrationExecutorErrorCode = 'MIGRATION_PLAN_INVALID' | 'MIGRATION_PATH_UNSAFE' | 'MIGRATION_SYMLINK_UNSAFE' | 'MIGRATION_DRIZZLE_VERSION' | 'MIGRATION_STATE_CHANGED' | 'MIGRATION_LOCKED' | 'MIGRATION_COMMAND_FAILED' | 'MIGRATION_STAGING_FAILED'; export declare class MigrationExecutorError extends Error { readonly code: MigrationExecutorErrorCode; constructor(code: MigrationExecutorErrorCode, message: string, options?: ErrorOptions); } //# sourceMappingURL=errors.d.ts.map