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