import { ICancellation, IDestroyable } from "./interfaces"; export declare class CancellationAggregate implements ICancellation { private readonly _tokens; constructor(tokens: ICancellation[]); throwIfRequested(): void; isRequested(): boolean; isSupported(): boolean; register(cb: (e: any) => void): IDestroyable; }