import type { PropsWithChildren } from "react"; import React from "react"; export declare function ChipSuffix({ children, className, onClick, testID, ariaLabel, }: ChipSuffixProps): React.JSX.Element; export interface ChipSuffixProps extends PropsWithChildren { readonly className?: string; readonly testID?: string; readonly ariaLabel?: string; readonly onClick?: (event: React.MouseEvent | React.KeyboardEvent) => void; }