import { RowStorage } from "./row-storage.js"; import { Action, Shape, Tables } from "../../types.js"; export declare function memoryTransaction({ shape, rowStorage, action, makeTableName, }: { shape: Shape; rowStorage: RowStorage; action: Action; makeTableName: (path: string[]) => string; }): Promise;