import type { ReactElement } from "react"; import { RadioFilterItemProps } from "../types"; /** * The RadioFilterItem component is the base component used in the manager to FilterItem data. * This component in generic and does not have any connection to the data. * * @param {RadioFilterItemProps} props - The props for the FilterItem component * @returns {ReactElement} FilterItem component */ export declare const RadioFilterItem: ({ value, label, itemCount, selected, checked, "data-testid": dataTestId, suffix, className, ...rest }: RadioFilterItemProps) => ReactElement;