import { AriaLabelProperty, CommonProps } from '../common'; export type ChipValue = string | number; export type Props = { value?: ChipValue; label: string; onRemove?: () => void; onClick?: () => void; onKeyPress?: () => void; closeButton?: AriaLabelProperty; 'aria-checked'?: boolean; role?: string; } & AriaLabelProperty & CommonProps; declare const Chip: ({ label, value, onRemove, onClick, onKeyPress, className, "aria-label": ariaLabel, "aria-checked": ariaChecked, role, closeButton, }: Props) => import("react").JSX.Element; export default Chip; //# sourceMappingURL=Chip.d.ts.map