import { ReactNode } from 'react';

interface IProps {
    children: ReactNode;
    state: any;
}
declare function GlobalReducerContext({ children, state }: IProps): import("react/jsx-runtime").JSX.Element;
export default GlobalReducerContext;
