import React from 'react'; export declare type StateAction = { type: string; } & Record; export declare type StateActionCases = { [actionType: string]: React.Reducer; }; export declare type StateProviderHelpers = { [key: string]: (...args: any[]) => any; }; export interface StateProviderProps { children: React.ReactNode | React.ReactNode[]; } //# sourceMappingURL=types.d.ts.map