import { SyntheticEvent } from 'react'; import { IconNames } from '../Icon/icons'; type ChipProps = { variant?: 'light' | 'outlined' | 'dark'; loading?: boolean; loaderCustomColor?: boolean; iconName?: IconNames; backgroundColor?: string; color?: string; label?: string; disabled?: boolean; hideIcon?: boolean; onClick?: (a: SyntheticEvent) => unknown; }; export default ChipProps; //# sourceMappingURL=type.d.ts.map