import { PaletteMode, Direction } from '@mui/material';
import { FunctionComponent, PropsWithChildren } from 'react';
import { ScreenSize } from './types.js';

interface Props extends PropsWithChildren {
    mode?: PaletteMode;
    screenSize?: ScreenSize;
    direction?: Direction;
    ignoreCacheProvider?: boolean;
}
declare const ThemeProvider: FunctionComponent<Props>;

export { ThemeProvider };
