import { CoreOptions, RxController, ActionFunctions } from './control'; export type DuplexOptions> = CoreOptions; export declare class DuplexController { /** input actions controller, abbrevation name of "inputControl" */ i: RxController; inputControl: RxController; /** output actions controller abbrevation name of "outputControl" */ o: RxController; outputControl: RxController; constructor(opts?: DuplexOptions); /** Invoke `setName` on RxController */ setName(value: string): void; }