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