import { ComponentPropsWithRef } from 'react'; import { GetChipProps } from '../shared/types'; type HTMLSpanProps = ComponentPropsWithRef<'span'>; type HTMLButtonProps = ComponentPropsWithRef<'button'>; type FilteredChipProps = Omit; type CloseAction = Readonly; export type ChipFilterProps = HTMLSpanProps & FilteredChipProps & { closeAction?: CloseAction; }; /** - Optional `closeAction` should be used to remove the filter. - `accessibilityLabel` is required in `closeAction`, so the close button can be read to a screen reader. */ export declare function ChipFilter({ closeAction, ...props }: ChipFilterProps): import("react/jsx-runtime").JSX.Element; export default ChipFilter;