import type { Selectable, Insertable, Generated } from "kysely"; import type { LixEngine } from "../../engine/boot.js"; export declare function applyTransactionStateSchema(args: { engine: Pick; }): void; export type InternalTransactionState = Selectable; export type NewInternalTransactionState = Insertable; export type InternalTransactionStateTable = { id: Generated; entity_id: string; schema_key: string; schema_version: string; file_id: string; plugin_key: string; version_id: string; writer_key: string | null; snapshot_content: Record | null; metadata: Record | null; created_at: Generated; untracked: number; }; //# sourceMappingURL=schema.d.ts.map