type Migrations = Record; export declare class Migration { static runMigrations(migrations: Migrations): Promise; static createMigrationsTable(): Promise; static checkMigration(version: string): Promise; static applyMigration(version: string, sql: string): Promise; } export {};