import { BoxProps } from '@mui/material'; import { PropsWithChildren } from 'react'; export type ChipProps = PropsWithChildren<{ textColor?: string; bgColor?: string; borderColor?: string; disabled?: boolean; padding?: string; unknownText?: string; minWidth?: string; maxWidth?: string; isSelected?: boolean; copyText?: string; expandDirection?: 'left' | 'right'; chipStyles?: object; disableAnimation?: boolean; containerStyles?: object; fullWidth?: boolean; } & BoxProps>;