export type ActionMap = { [Key in keyof M]: M[Key] extends undefined ? { type: Key; } : { type: Key; payload?: M[Key]; }; }; //# sourceMappingURL=ActionMap.d.ts.map