import { type Knex } from "knex"; type ColumnValue = string | number | boolean | null; export type RowWithId = { [key in Id]: ColumnValue; } & Record; /** * Batch update rows in a table. Technically its a patch since it only updates the specified columns. Any omitted columns will not be affected * @param knex * @param tableName * @param ids * @param rows * @param chunkSize * @param trx */ export declare function batchUpdate(knex: Knex, tableName: string, ids: Id[], rows: RowWithId[], chunkSize?: number, trx?: Knex.Transaction | null): Promise; export {}; //# sourceMappingURL=_batch_update.d.ts.map