export declare function withCancel<T>(asyncIteratorLike: {
    [Symbol.asyncIterator](): AsyncIterator<T>;
}, onCancel: () => void): AsyncIterator<T | undefined>;
