import { default as React } from 'react';
type Props = {
    gridId: string;
    isAllSelected: boolean;
    selectAll: () => void;
    deselectAll: () => void;
    disabled?: boolean;
};
export declare const SelectAllGridRowsCell: React.FC<Props>;
export {};
