import React from 'react'; declare type SharedInputProps = Pick, 'disabled' | 'tabIndex' | 'aria-label' | 'aria-labelledby'>; export interface SelectCellFormatterProps extends SharedInputProps { isCellSelected?: boolean; value: boolean; onChange: (value: boolean, isShiftClick: boolean) => void; } export declare function SelectCellFormatter({ value, tabIndex, isCellSelected, disabled, onChange, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledBy }: SelectCellFormatterProps): JSX.Element; export {};