import { throttle } from '../../internal/patching/operator/throttle';
import { throttleTime } from '../../internal/patching/operator/throttleTime';
declare module '../../internal/Observable' {
    interface Observable<T> {
        throttle: typeof throttleTime;
        throttleV5: typeof throttle;
    }
}
