UNPKG

syber-lowcode-business-materials

Version:
12 lines (11 loc) 366 B
import * as React from 'react'; export interface RobotItemProps { robotData?: any; onMediaClick?: (e: any, item: any) => void; onLongRange?: (e: any, item: any) => void; onCheckboxChange?: (e: any, item: any) => void; isCheckbox?: boolean; checkedList?: boolean; } declare const RobotItem: React.FC<RobotItemProps>; export default RobotItem;