export { Observable, Subject, fromEvent, ReplaySubject, Subscription } from 'rxjs';
export type { Observer } from 'rxjs';
import { startWith, takeUntil, map, debounce, debounceTime, throttleTime } from 'rxjs/operators';
export declare const ops: {
    debounce: typeof debounce;
    debounceTime: typeof debounceTime;
    map: typeof map;
    startWith: typeof startWith;
    takeUntil: typeof takeUntil;
    throttleTime: typeof throttleTime;
};
