import type { Insertable, Selectable } from "kysely"; import type { SqliteWasmDatabase } from "sqlite-wasm-kysely"; export declare const tablesByDepencies: string[]; export declare const tableIdColumns: Record>; export declare function applyMutationLogDatabaseSchema(sqlite: SqliteWasmDatabase): void; export type MutationLog = Selectable; export type NewMutationLog = Insertable; export type MutationLogTable = { row_id: Record; table_name: string; operation: "INSERT" | "UPDATE"; session: string; session_time: number; wall_clock: number; }; //# sourceMappingURL=database-schema.d.ts.map