import { Constructor, ObservableWithFoundationalMotionOperators, ObservableWithMotionOperators } from '../types'; export declare type StartWithArgs = { value: T; }; export interface MotionSeedable { startWith(value: T): ObservableWithMotionOperators; startWith(kwargs: StartWithArgs): ObservableWithMotionOperators; } export declare function withStartWith>>(superclass: S): S & Constructor>;