/// <reference types="react" />
import { BaseComponentProps } from '../../base-component';
interface CheckboxIconProps extends BaseComponentProps {
    checked?: boolean;
    indeterminate?: boolean;
    disabled?: boolean;
    readOnly?: boolean;
}
declare const CheckboxIcon: ({ checked, indeterminate, disabled, readOnly, ...restProps }: CheckboxIconProps) => JSX.Element;
export default CheckboxIcon;
//# sourceMappingURL=index.d.ts.map