import React from 'react'; import { Key, DataEntity, SelectionSelectFn } from './interface'; interface ISelectionProps { record: T; rowIndex: number; strictly?: boolean; checkedKeys: Key[]; halfCheckedKeys: Key[]; keyEntities: Record; rowKey: string | ((record: T, index: number) => string); onSelect?: SelectionSelectFn; } declare const VirtualizedSelection: React.FC>; export default VirtualizedSelection;