import { useTheme as useThemeBase } from '@mui/system'; import { PaletteMode, ThemeOptions, Theme } from './config'; export declare const useTheme: typeof useThemeBase; declare function createTheme({ mode, lang, theme: themeProps, }?: { mode?: PaletteMode; lang?: string; theme?: PartialDeep; }, ...args: object[]): import("@mui/system").Theme; export default createTheme;