import { SxProps, Theme } from '@mui/material'; export interface IChipProps { size?: 'medium' | 'small'; variant?: 'outlined' | 'contained'; label: string; badgeProps?: { label: number | string; bgColor?: string; color?: string; loading?: boolean; }; selected?: boolean; disabled?: boolean; onClick?: any; sx?: SxProps; deletable?: boolean; onDelete?: () => void; } declare const Chip: ({ size, variant, label, badgeProps, selected, disabled, onClick, sx, deletable, onDelete }: IChipProps) => import("react/jsx-runtime").JSX.Element; export default Chip;