import { AriaLabelingProps } from '../../core/types/a11y-props.js'; import type { BehaviorTrackingProps } from '../../core/types/behavior-tracking-props.js'; import { DataTestId } from '../../core/types/data-props.js'; import { DOMProps } from '../../core/types/dom.js'; import { StylingProps } from '../../core/types/styling-props.js'; /** * Accepted properties for the Chip Button. * @public */ export interface ResetButtonProps extends AriaLabelingProps, DOMProps, StylingProps, DataTestId, BehaviorTrackingProps { /** 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) => import("react").ReactElement | null;