/** * Action map */ export declare type ActionMap = { [Key in keyof M]: M[Key] extends undefined ? { /** * Type of the action */ type: Key; } : { /** * Payload to the action */ payload?: M[Key]; /** * Type of the action */ type: Key; }; };