export interface Aborter {
    abort(): void;
    signal: AbortSignal;
}
export declare function getAborter(): Aborter;
