import { Observable, ObservableInput, OperatorFunction } from 'rxjs'; /** * Makes a cold observable from any emitted parameterless function that returns `ObservableInput`. * This operator is especially handy for turning asynchronous functions into cold observables. * * @category Operator */ export declare function coldFrom(): OperatorFunction<() => ObservableInput, Observable>; //# sourceMappingURL=cold-from.d.ts.map