import { CheckBoxFilterItemProps } from "../types"; /** * The CheckBoxFilterItem 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 {CheckBoxFilterItemProps} props - The props for the FilterItem component * @returns {ReactElement} FilterItem component */ export declare const CheckBoxFilterItem: ({ itemCount, className, suffix, "data-testid": dataTestId, label, checked, ref, ...rest }: CheckBoxFilterItemProps) => import("react/jsx-runtime").JSX.Element;