export declare enum ActionType { UPDATE_STATE = "UPDATE_STATE" } export declare type TAction = { type: ActionType; payload?: any; };