import * as react_jsx_runtime from 'react/jsx-runtime';

interface CheckboxIconProps {
    'data-checked'?: string;
    isSelected?: boolean;
    isIndeterminate?: boolean;
    isInvalid?: boolean;
    className?: string;
}
/**
 * CheckboxIcon is used to visually indicate the checked or indeterminate
 * state of a checkbox.
 */
declare function CheckboxIcon(props: CheckboxIconProps): react_jsx_runtime.JSX.Element;

export { CheckboxIcon, CheckboxIconProps };
