import { FC, ReactNode } from 'react'; import { ChipProps } from "@mui/material"; import { TypographyProps } from "@mui/material/Typography"; export interface ICustomChipProps { label: ReactNode; endIcon?: ReactNode; startIcon?: ReactNode; labelProps?: TypographyProps; chipProps?: ChipProps; } declare const CustomChip: FC; export default CustomChip;