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