export declare function asyncIterationUntilReturn<TInput, TOutput>(iterable: Iterable<TInput>, callback: (result: TInput) => Promise<TOutput | undefined> | TOutput | undefined): Promise<TOutput | undefined> | TOutput | undefined;
export declare function isBlob(value: any): value is Blob;
