import { IControlSetConfig } from '@mjcloud/types'; import { IConfigStartLoadParams, IInitialStateParams, IState } from '@mjcloud/redux'; import { ControlActionType, ControlEventType } from '@mjcloud/instance/dist/base'; export interface ISeparateConfig extends IControlSetConfig { type: 'horizontal' | 'vertical'; } export interface ISeparateConfigStartLoadParams extends IConfigStartLoadParams { } export interface ISeparateInitialStateParams extends IInitialStateParams { } export interface ISeparateState extends IState { type: 'horizontal' | 'vertical'; } export declare type SeparateActionType = ControlActionType; export declare type SeparateEventType = ControlEventType;