import { CommonState } from './../states/'; export declare const SET_STATE = "SET_STATE"; export declare type SetState = { type: typeof SET_STATE; state: CommonState; }; export declare type Actions = SetState; export declare const setState: (state: CommonState) => SetState;