import { IconProp } from '@fortawesome/fontawesome-svg-core'; import { Colors } from '../../styles'; import * as React from 'react'; interface Props { children: React.ReactNode; style?: React.CSSProperties; type: 'checked' | 'deletable' | 'basic'; variant: 'outlined' | 'contained'; color: Colors; avatar?: { type: 'img' | 'text'; color?: string; value: string; }; icon?: IconProp; onClick?: any; } declare const Chip: { (props: Props): JSX.Element; defaultProps: { type: string; variant: string; color: string; }; }; export default Chip;