import { type MouseEventHandler } from 'react'; import { type DataTestId, type StylingProps, type AriaLabelingProps, type DOMProps } from '@dynatrace/strato-components/core'; /** * Accepted properties for the Chip Button. * @public */ export interface ChipDeleteButtonProps extends AriaLabelingProps, DOMProps, StylingProps, DataTestId { /** * If a button is disabled e.g. it cannot be interacted with. * By default, it inherits the disabled prop of the Chip, but can be overwritten. * @defaultValue false */ disabled?: boolean; /** Called when the button is interacted with. */ onClick?: MouseEventHandler; } /** * Component which allows users to trigger actions or events when on click or when pressing `Enter` or `Space` while the button has focus. * @public */ export declare const ChipDeleteButton: (props: ChipDeleteButtonProps & import("react").RefAttributes) => React.ReactElement | null;