import { default as React } from 'react';
type Props = {
    rowId: string;
    isRowSelected: boolean;
    selectRowById: (id: string) => void;
    deselectRowById: (id: string) => void;
    disabled?: boolean;
};
export declare const SelectGridRowCell: React.FC<Props>;
export {};
