/** * Attaches a cleanup handler from and AsyncIterable to an AsyncIterable. * * @param source * @param target */ export declare function withHandlersFrom( /** The source that should be returned with attached handlers. */ source: AsyncIterable, /**The target on which the return and throw methods should be called. */ target: AsyncIterableIterator): AsyncGenerator;