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