/// import { SvgIconProps } from '@mui/material/SvgIcon'; interface VerifiedIconProps { color: string; fontSize?: SvgIconProps['fontSize']; } export default function VerifiedIcon({ color, fontSize, }: VerifiedIconProps): JSX.Element; export {};