import React from 'react'; import { type Theme } from '@mui/material/styles'; interface MUIThemeProviderProps { children: React.ReactNode; theme: Partial | ((outerTheme: Theme) => Theme) | undefined; } declare function MUIThemeProvider({ children, theme }: MUIThemeProviderProps): React.JSX.Element | null; declare const _default: React.MemoExoticComponent; export default _default;