import Sequelize from "sequelize"; export declare namespace MigrationUtils { function getOption(queryInterface: Sequelize.QueryInterface, q: string): any; function getDialect(queryInterface: Sequelize.QueryInterface): Sequelize.Dialect; function countRows(queryInterface: Sequelize.QueryInterface, table: string, whereClause?: string): Promise; function ensureSQLiteTableEmpty(queryInterface: Sequelize.QueryInterface, table: string): Promise; }