import { HNDesignsystemChip } from '../../resources/Resources'; export interface ChipProps { /** @deprecated Called when action is set and the chip is clicked on. action must also be set. */ onClick?: () => void; /** Sets the text of the chip */ children: string; /** Wether or not to have a close button */ withCloseButton?: boolean; /** onClick handler for text-part of the chip */ onChipClick?: () => void; /** Button props for main chip button */ chipButtonProps?: React.ButtonHTMLAttributes; /** onClick handler for close button */ onCloseClick?: () => void; /** Button props for the close button */ closeButtonProps?: React.ButtonHTMLAttributes; /** Sets the data-testid attribute on the expander button. */ testId?: string; /** Resources for the component */ resources?: Partial; } declare const Chip: React.FC; export default Chip;