export type Batcher<T> = {
    send(item: T): void;
};
export declare function newBatcher<T>(sendInternal: (items: T[]) => void): Batcher<T>;
