type CallbackFunction = () => void;
type UpdateFunction = (cb: CallbackFunction) => void;
export default class UpdateQueue {
    private _queue;
    enqueue(updateFn: UpdateFunction, cb: CallbackFunction): void;
    executePendingUpdates(): void;
}
export {};
//# sourceMappingURL=UpdateQueue.d.ts.map