import { ReactNode, default as React } from 'react'; import { BadgeProps } from '../..'; export interface TagProps extends BadgeProps { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; /** * The text displayed inside the tag. */ label: string; /** * A React component that will be rendered as an icon. */ icon?: ReactNode; /** * For accessibility purposes, provide an ARIA label to the Icon button */ iconButtonLabel?: string; /** * Function called when Icon button is clicked. */ onClose: () => void; } declare const Tag: React.ForwardRefExoticComponent>; export default Tag; //# sourceMappingURL=Tag.d.ts.map