import { IObservable } from '../../../../../type/observable.type';
export declare function timeout(duration: number): IObservable<void>;
export declare function timeout<GValue>(duration: number, getValue?: () => GValue): IObservable<GValue>;
