import type { TodoOptionItem } from '@wufengteam/core'; import React from 'react'; import './index.less'; export interface EditActionOptionsProps { value: any; type: string; options?: any; onChange: (v: any) => void; isDefaultValue?: boolean; todoOptionKey?: any; keys?: string; data?: any; placeholder?: string; readOnly?: boolean; maxLength?: number; isShowAll: boolean; renderOptionsItem?: (optList: TodoOptionItem, data: [], onChange?: any) => any; useFunctionValue?: (options: any) => void; optionProps?: any; todoOptionItem?: TodoOptionItem; extraGroupClickRef?: any; /** * 是否为查看模式 */ isViewMode?: boolean; } declare const EditActionOptions: React.FC; export default EditActionOptions;