import { type ClickHouseExecutor } from '@chkit/clickhouse'; import type { MigrationJournal, MigrationJournalEntry } from './migration-store.js'; interface JournalStore { readJournal(): Promise; appendEntry(entry: MigrationJournalEntry): Promise; readonly databaseMissing: boolean; } export declare function createJournalStore(db: ClickHouseExecutor): JournalStore; export {}; //# sourceMappingURL=journal-store.d.ts.map