import { BoxProps } from '@mui/material'; type TUserInfoItemProps = { data: { icon: any; title: string; content: any; }; verified?: boolean; }; export default function UserInfoItem({ data, verified, ...rest }: TUserInfoItemProps & BoxProps): import("react/jsx-runtime").JSX.Element; export {};