import { Queue, QueueItem } from './types'; /** * This hook returns a queue that can be used to batch updates. * * @param runQueue - a function that gets called when the queue is flushed * @internal * * @returns a Queue object */ export declare function useQueue(runQueue: (items: QueueItem[]) => void): Queue; //# sourceMappingURL=useQueue.d.ts.map