import React from 'react'; interface MiniReduxProps { namespace?: Namespace; state?: State; reducers?: any; effects?: any; } declare const _default: , Namespace extends string>({ namespace, state, reducers, effects, }: MiniReduxProps) => { Context: React.Context<{ [K in Namespace]: State; } & { dispatch: (params: { type: string; payload: any; }) => void; }>; Provider: (ComponentUi: any) => (props: any, ref: any) => React.JSX.Element; }; export default _default;