import * as React from 'react';
import { Theme } from '@mui/material/styles';
export interface ThemeProviderProps {
    theme?: Theme;
}
export declare const ThemeProvider: React.FC<ThemeProviderProps>;
