export declare function withCancel<T, TAsyncIterable extends AsyncIterable<T>>(asyncIterable: TAsyncIterable, onCancel: (value?: any) => void): AsyncIterable<T | undefined>;
