import { type ITimestampStruct } from '../clock'; import type { Patch } from '../Patch'; export declare class Batch { patches: Patch[]; meta: unknown; constructor(patches: Patch[]); getId(): ITimestampStruct | undefined; rebase(serverTime: number): Batch; clone(): Batch; toString(tab?: string): string; } //# sourceMappingURL=Batch.d.ts.map