import { DefaultTheme } from '@material-ui/styles'; export interface ThemeProviderProps { children?: React.ReactNode; theme: Partial | ((outerTheme: Theme) => Theme); } /** * This component makes the `theme` available down the React tree. * It should preferably be used at **the root of your component tree**. * API: * * - [ThemeProvider API](https://material-ui.com/api/theme-provider/) */ export default function ThemeProvider( props: ThemeProviderProps ): React.ReactElement>;