import { ComponentPropsWithRef } from 'react'; import { ButtonProps } from '../Button/Button'; export type ButtonFilterProps = ComponentPropsWithRef<'button'> & { count?: number; icon?: ButtonProps['icon']; status?: 'normal' | 'open' | 'active'; loading?: boolean; }; /** - **Use only for filtering via a dropdown menu**, together with [Popover](/docs/popover--docs). - When used as [Popover](/docs/popover--docs)'s `triggerButton`, Popover will supply the click events and aria attributes: You just need to toggle the `isActive` prop. - Only available in our `medium` button size. - Use title case for button text. For example, "Start Date" instead of "Start date". */ export declare const ButtonFilter: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; export default ButtonFilter;