export declare type BatchCallback = () => void; export declare type BatchFn = (callback: BatchCallback) => void; export declare const setBatch: (fn: BatchFn) => void; export declare const getBatch: () => BatchFn;