import type { BatchOrigin } from '../entry/entry.js';
export interface Batch {
    id: string;
    origin: BatchOrigin;
    startedAt: Date;
    traceId?: string;
    spanId?: string;
}
export declare function createBatch(origin: BatchOrigin, idFactory: () => string, now?: () => number): Batch;
//# sourceMappingURL=batch.d.ts.map