import { IEvent } from '../Events/_types'; export default class CancellationToken { #private; /** * */ constructor(cancelledEvent?: IEvent); get onCancelled(): IEvent; get isCancellationRequested(): boolean; static default: CancellationToken; }