import type { FC, PropsWithChildren, ReactNode } from 'react';
import type { SxProps } from '@mui/material';
interface MuiIconNameProps {
    name: string | ReactNode;
    color: string;
    width: string | number;
    height: string | number;
    sx?: SxProps;
}
type MuiIconNamePropsType = PropsWithChildren<MuiIconNameProps>;
declare const MuiIconName: FC<MuiIconNamePropsType>;
export default MuiIconName;
//# sourceMappingURL=MuiIconName.d.ts.map