import { Constructor, Observable, ObservableWithMotionOperators } from '../../types'; export interface MotionMulticastable extends Observable { _multicast(): ObservableWithMotionOperators; } export declare function withMulticast>>(superclass: S): S & Constructor>;