import { IconProps } from '@iconify/react'; import { BoxProps } from '@mui/material'; interface IconifyProps extends BoxProps { icon: IconProps["icon"]; } declare const IconifyIcon: ({ icon, ...rest }: IconifyProps) => import("react/jsx-runtime").JSX.Element; export default IconifyIcon;