import { createTheme, PaletteMode, Theme } from '@mui/material'; /** * Gets theme used by all components for the provided mode. For more details, see: * - Base colors, typography, sizing - go/chrono-ui-theme * - Material UI defaults: https://material-ui.com/customization/default-theme/ * - Material UI variables: https://material-ui.com/customization/theming/#theme-configuration-variables * - Material UI global overrides and default props: https://material-ui.com/customization/globals/#css * * Need to reinstantiate the theme everytime to support switching between light and dark themes * https://github.com/mui-org/material-ui/issues/18831 * * Enable disableBodyOverride to prevent the theme from applying color scheme to the body element. */ export declare function getTheme(mode: PaletteMode, options?: Parameters[0], disableBodyOverride?: boolean): Theme; //# sourceMappingURL=theme.d.ts.map