import React from 'react'; import type { MouseEventHandler, ReactElement, ReactNode } from 'react'; import type { DefaultProps } from '../../types'; import type { ChipProps } from '@mui/material/Chip'; export interface IChipProps extends ChipProps, Omit { label?: ReactNode; icon?: ReactElement; avatar?: ReactElement; square?: boolean; color?: 'default' | 'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning'; size?: 'small' | 'medium'; variant?: 'outlined' | 'filled'; onClick?: MouseEventHandler | undefined; onDelete?: ((event: unknown) => void) | undefined; } declare const Chip: ({ square, padding, margin, style, ...otherProps }: IChipProps) => React.JSX.Element; export default Chip;