import { MonoTypeOperatorFunction, OperatorFunction, SchedulerLike } from '../types'; /** @deprecated use {@link scheduled} and {@link concatAll} (e.g. `scheduled([[a, b, c], source], scheduler).pipe(concatAll())`) */ export declare function startWith(scheduler: SchedulerLike): MonoTypeOperatorFunction; /** @deprecated use {@link scheduled} and {@link concatAll} (e.g. `scheduled([[a, b, c], source], scheduler).pipe(concatAll())`) */ export declare function startWith(v1: D, scheduler: SchedulerLike): OperatorFunction; /** @deprecated use {@link scheduled} and {@link concatAll} (e.g. `scheduled([[a, b, c], source], scheduler).pipe(concatAll())`) */ export declare function startWith(v1: D, v2: E, scheduler: SchedulerLike): OperatorFunction; /** @deprecated use {@link scheduled} and {@link concatAll} (e.g. `scheduled([[a, b, c], source], scheduler).pipe(concatAll())`) */ export declare function startWith(v1: D, v2: E, v3: F, scheduler: SchedulerLike): OperatorFunction; /** @deprecated use {@link scheduled} and {@link concatAll} (e.g. `scheduled([[a, b, c], source], scheduler).pipe(concatAll())`) */ export declare function startWith(v1: D, v2: E, v3: F, v4: G, scheduler: SchedulerLike): OperatorFunction; /** @deprecated use {@link scheduled} and {@link concatAll} (e.g. `scheduled([[a, b, c], source], scheduler).pipe(concatAll())`) */ export declare function startWith(v1: D, v2: E, v3: F, v4: G, v5: H, scheduler: SchedulerLike): OperatorFunction; /** @deprecated use {@link scheduled} and {@link concatAll} (e.g. `scheduled([[a, b, c], source], scheduler).pipe(concatAll())`) */ export declare function startWith(v1: D, v2: E, v3: F, v4: G, v5: H, v6: I, scheduler: SchedulerLike): OperatorFunction; export declare function startWith(v1: D): OperatorFunction; export declare function startWith(v1: D, v2: E): OperatorFunction; export declare function startWith(v1: D, v2: E, v3: F): OperatorFunction; export declare function startWith(v1: D, v2: E, v3: F, v4: G): OperatorFunction; export declare function startWith(v1: D, v2: E, v3: F, v4: G, v5: H): OperatorFunction; export declare function startWith(v1: D, v2: E, v3: F, v4: G, v5: H, v6: I): OperatorFunction; export declare function startWith(...array: D[]): OperatorFunction; /** @deprecated use {@link scheduled} and {@link concatAll} (e.g. `scheduled([[a, b, c], source], scheduler).pipe(concatAll())`) */ export declare function startWith(...array: Array): OperatorFunction;