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