type CancellableTask = {
    cancel: () => void;
};
declare function queueTask(callback: () => void, endTime: number): CancellableTask;

export { type CancellableTask, queueTask };
