/// import type { ChipProps } from '@mui/material/Chip'; interface IChipProps extends ChipProps { } export default function Chip({ ...rest }: IChipProps): JSX.Element; export {};