import '@fontsource/inter/400.css'; import '@fontsource/inter/600.css'; import { ThemeOptions } from '@mui/material'; import { PropsWithChildren, ReactElement } from 'react'; /** * Props for the {@link MuiThemeProvider} component. */ export type MuiThemeProviderProps = PropsWithChildren; /** * Provide a semantic UI based theme to the child components. * @param param0 - {@link MuiThemeProviderProps} */ export declare function MuiThemeProvider({ children, }: MuiThemeProviderProps): ReactElement; export declare function chooseTheme(theme: string): ThemeOptions;