import { Constructor, EmittingOperation, Observable, ObservableWithMotionOperators } from '../../types'; export declare type _NextOperatorArgs = { operation: EmittingOperation; }; export interface MotionNextOperable extends Observable { _nextOperator(kwargs: _NextOperatorArgs): ObservableWithMotionOperators; } export declare function withNextOperator>>(superclass: S): S & Constructor>;