import { SvgIconProps } from '@mui/material'; interface CheckIconProps { color?: string; fontSize?: SvgIconProps["fontSize"]; sx?: SvgIconProps["sx"]; } declare const UploadIcon: ({ fontSize, sx, color }: CheckIconProps) => import("@emotion/react/jsx-runtime").JSX.Element; export default UploadIcon;