import { OperatorFunction, SchedulerLike } from 'rxjs'; /** Like startWith(), but the value is determined by a function called at the time of subscription. */ export declare function startWithDeferred(selector: () => D, scheduler?: SchedulerLike): OperatorFunction;