import { Firestore, WriteBatch } from '../types'; /** * Creates a write batch, used for performing multiple writes as a single * atomic operation. * @param firestore Optional, a reference to the Firestore database. * If no value is provided, default Firestore instance is used. */ export declare const writeBatch: (firestore?: Firestore) => WriteBatch;