import React from 'react'; import { ChipProps } from './types'; export declare const Chip: ({ label, variant, color, size, disabled, StartIcon, DeleteIcon, linkComponent: LinkComponent, href, ariaLabel, ariaPressed, onDelete, onClick, onFocus, onBlur, ...restProps }: ChipProps & { ariaPressed?: boolean; }) => React.JSX.Element;