import React, { TdHTMLAttributes } from 'react'; interface GridCellProps extends TdHTMLAttributes { disabledReason?: string; referrerId?: string; } export declare const GridCell: React.ForwardRefExoticComponent>; export {};