import type { TableDef } from "../../toolbox.js"; import type { BatchWriteItem, BatchWriteResult } from "./types.js"; export interface BatchWriteParams { table: TableDef | undefined; items: BatchWriteItem[]; } /** * Method is meant for batch writing to a single table. * It expects already prepared items for writing. * It can either delete or put items * The method does not check items before actually sending them into the underlying library. */ export declare const batchWriteAll: (params: BatchWriteParams, maxChunk?: number) => Promise;