export declare const FLYWAY_HISTORY_TABLE = "__migrations";
export declare const FLYWAY_HISTORY_SCHEMA = "public";
export interface MigrateConfig {
    migrate: {
        locations?: string[];
        historyTable?: string;
        historySchema?: string;
        sqlMigrationSuffixes?: string[];
        sqlMigrationSeparator?: string;
        sqlMigrationStatementSeparator?: string;
    };
}
export declare const DEFAULT_MIGRATE_CONFIG: MigrateConfig;
