import { IconProps } from '@iconify/react';
import { BoxProps } from '@mui/material';
import { Omit } from '../../types';
type OmittedProps = 'color';
export interface BoxIconModel extends Omit<BoxProps, OmittedProps> {
    color?: string;
    icon: string;
    iconProps?: Omit<IconProps, 'color' | 'icon'>;
}
export {};
