import { ITypedEvent } from './TypedEvent';
export declare class CancelationTokenSource {
    private _canceled;
    private _cancellationRequested;
    readonly CancellationEvent: ITypedEvent<void>;
    Cancel(): void;
    get IsCancelled(): boolean;
}
