import { ITableSearchService } from '@/core/interfaces';
import React from 'react';
import { Row } from 'react-table';
interface Props {
    isHeader: boolean;
    row?: Row<any>;
    indeterminate?: boolean;
    service: ITableSearchService;
}
declare const IndeterminateCheckbox: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLInputElement>>;
export default IndeterminateCheckbox;
