import { MouseEventHandler } from 'react'; import { ChipProps as MuiChipProps } from '@material-ui/core'; export type ChipProps = Partial> & { variant?: 'default' | 'outlined' | 'basic'; /** * Displays a checked icon */ checked?: boolean; 'data-testid'?: string; onClick?: MouseEventHandler; }; declare const Chip: React.ForwardRefExoticComponent>; export default Chip; //# sourceMappingURL=index.d.ts.map