import { ObservableInput, Observable } from "rxjs"; import { SUSPENSE } from "@react-rxjs/core"; /** * A RxJS creation operator that prepends a SUSPENSE on the source observable. * * @param source$ Source observable */ export declare const suspend: (source$: ObservableInput) => Observable;