import { HttpException } from '@nestjs/common';
export type MigrationExceptionType = 'MIGRATION_FAILED' | 'SCHEMA_MISMATCH' | 'ROLLBACK_FAILED' | 'CONFIG_LOAD_ERROR';
export declare class MigrationException extends HttpException {
    type: MigrationExceptionType;
    constructor(type: MigrationExceptionType, details: string);
}
