import { ReactNode } from 'react'; import { colorIndex } from '../../constants/colors/colors.types'; import { FlexProps } from '../Flex/Flex.types'; export interface ChipProps extends FlexProps { label: ReactNode; onDelete?: () => void; onClick?: () => void; backgroundColor?: colorIndex; color?: colorIndex; borderColor?: colorIndex; size?: 'small' | 'default'; }