import { Observable, nothing, ISink, Observer, Subscribe } from "./common"; export declare const toPromise: () => (source: Observable) => Promise; export declare const toReadableStream: () => (source: Observable) => ReadableStream; export declare const subscribe: (n?: (data: T) => void, e?: typeof nothing, c?: typeof nothing) => (source: Observable) => Subscribe; export declare const tap: (ob: Partial> | ((d: T) => void)) => import("./common").Operator; export declare const timeout: (timeout: number) => import("./common").Operator; export declare const retry: (count?: number) => (source: Observable) => (observer: ISink) => void; //# sourceMappingURL=utils.d.ts.map