import { BaseComponentProps } from '../../base-component';
export interface CheckboxIconProps extends BaseComponentProps {
    checked?: boolean;
    indeterminate?: boolean;
    disabled?: boolean;
}
declare const CheckboxIcon: ({ checked, indeterminate, disabled, ...restProps }: CheckboxIconProps) => JSX.Element;
export default CheckboxIcon;
