import { BoxProps } from '@mui/material'; import { FunctionComponent } from 'react'; declare type PaletteColor = 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'error'; declare type IconColor = PaletteColor | 'default' | 'inherit'; declare type IconSize = 'small' | 'medium' | 'large'; declare type IconBoxVariant = 'default' | 'bordered' | 'light'; declare type IconBoxProps = { color?: IconColor; size?: IconSize; variant?: IconBoxVariant; }; export declare const IconBox: FunctionComponent; export {};