import { Database } from 'sqlite'; import { Logger } from '../../logger'; import { Migration } from './migration'; export declare class Migrator { readonly db: Database; readonly logger: Logger; readonly migrations: Migration[]; constructor(options: { db: Database; logger: Logger; }); getCurrentId(): Promise; getLatest(): Migration | null; migrated(): Promise; migrate(): Promise; write(output: string): void; } //# sourceMappingURL=migrator.d.ts.map