syber-lowcode-business-materials
Version:
syber-lowcode-business-materials
12 lines (11 loc) • 366 B
TypeScript
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;