import type {ReactNode} from 'react'; import type {Theme} from '@mui/material'; export interface IThemeProviderProps { children: ReactNode; theme?: Theme; }