import { Observable } from "rxjs"; export declare type Maybe = T | undefined; export declare function cache(fn: () => Promise): Observable; export declare function promiseToObservable(promise: Promise>): Observable; export declare function noop(): void;