import React from 'react'; export interface RadioCellItemProps { type?: 'header' | 'row'; invisible?: boolean; onChange?: (e: React.ChangeEvent) => void; checked?: boolean; disabled?: boolean; size?: 'small' | 'medium' | 'large'; colIndex: number; } export declare const RadioCellItem: (props: RadioCellItemProps) => import("react/jsx-runtime").JSX.Element;