import { AriaButtonProps } from 'react-aria/useButton'; import { DOMProps, StyleProps } from '@react-types/shared'; import React, { ElementType } from 'react'; interface ClearButtonProps extends AriaButtonProps, DOMProps, StyleProps { focusClassName?: string; variant?: 'overBackground'; excludeFromTabOrder?: boolean; preventFocus?: boolean; inset?: boolean; } export declare const ClearButton: React.ForwardRefExoticComponent & React.RefAttributes>>; export {};