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