export declare type Action = {
    type: any;
    payload?: any;
};
export declare type Reducer<S, A = Action> = (state: S, action: A) => S;
//# sourceMappingURL=types.d.ts.map