import * as React from 'react'; import { DefaultTheme } from '@mui/system'; export interface ThemeProviderNoVarsProps { children?: React.ReactNode; theme: Partial | ((outerTheme: Theme) => Theme); } export default function ThemeProviderNoVars({ theme: themeInput, ...props }: ThemeProviderNoVarsProps): React.ReactElement>;