import { PaletteColor, Shadows, Theme, ThemeOptions } from '@mui/material'; export declare function createTheme(options?: ThemeOptions, ...args: object[]): Theme; export declare const createShadows: (defaultShadows: Shadows) => Shadows; type ColorType = 'default' | 'inherit' | 'primary' | 'secondary' | 'success' | 'error' | 'info' | 'warning' | 'neutral'; export declare const getColorFromTheme: (theme: Theme, props: { color?: ColorType; }, paletteKey?: keyof PaletteColor) => string; export {};