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