/// <reference types="react" />
/**
 * __Checkbox icon__
 *
 * A checkbox icon is the visual representation of checkbox state,
 * which is shown instead of the native input.
 *
 * @internal
 */
declare const CheckboxIcon: import("react").NamedExoticComponent<{
    isIndeterminate: boolean;
    isChecked: boolean;
}>;
export default CheckboxIcon;
