import * as React from 'react'; import { type Theme } from '@mui/material/styles'; export interface CoreUIThemeProviderProps { children: JSX.Element | JSX.Element[]; theme: Theme; } declare const CoreUIThemeProvider: ({ children, theme }: CoreUIThemeProviderProps) => React.JSX.Element | null; export default CoreUIThemeProvider;