import React from 'react'; import { store } from './store'; export type Props = { children?: React.ReactNode | React.ReactNode[] | any; }; export type RootState = ReturnType; export type AppDispatch = typeof store.dispatch; declare function CustomProvider({ children }: Props): import("react/jsx-runtime").JSX.Element; export default CustomProvider; //# sourceMappingURL=CustomProvider.d.ts.map