/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import { type NamedExoticComponent } from 'react';
type CheckboxIconProps = {
    isIndeterminate: boolean;
    isChecked: boolean;
};
/**
 * __Checkbox icon__
 *
 * A checkbox icon is the visual representation of checkbox state,
 * which is shown instead of the native input.
 *
 * @internal
 */
declare const CheckboxIcon: NamedExoticComponent<CheckboxIconProps>;
export default CheckboxIcon;
