interface Batch {
    <c extends (...args: any) => any>(callback: c): void;
}
export declare const setBatch: (newBatch: Batch) => Batch;
export declare const getBatch: () => Batch;
export {};
