export declare type Action = { type: any; payload?: Partial; }; export declare type Reducer> = (state: S, action: A) => S; export declare type Optional = { [P in keyof T]?: T[P]; }; //# sourceMappingURL=types.d.ts.map