import { BoxProps } from '@mui/material';
import { IconifyProps } from './types';
interface Props extends BoxProps {
    icon: IconifyProps;
}
declare const Iconify: import("react").ForwardRefExoticComponent<Omit<Props, "ref"> & import("react").RefAttributes<SVGElement>>;
export default Iconify;
