import { type DataTestId, type StylingProps, type AriaLabelingProps, type DOMProps } from '@dynatrace/strato-components/core'; /** * Accepted properties for the Chip Button. * @public */ export interface ResetButtonProps extends AriaLabelingProps, DOMProps, StylingProps, DataTestId { /** Handler that is called when the ResetButton is clicked. */ onClick: () => void; } /** * Component which allows resetting the values of the FilterBar items. * @public */ export declare const ResetButton: (props: ResetButtonProps & import("react").RefAttributes) => React.ReactElement | null;