import React from 'react'; interface IFieldValue { creationDate: string; createdBy: number; lastUpdateDate: string; lastUpdatedBy: number; objectVersionNumber: number; id: string; statusFieldSettingId: string; projectId: number; optionId: null | string | string[]; fieldType: 'member' | 'radio' | 'single' | 'checkbox' | 'multiple' | 'text' | 'input' | 'number' | 'date' | 'time' | 'datetime'; operateType: 'clear' | 'specifier' | 'current_time' | 'add' | 'reportor' | 'creator' | 'operator' | 'participant'; numberValue: null | number; numberAddValue: null | number; textValue: null | string; dateValue: null | string; dateAddValue: null | number; userId: null | string; name: null | string; } export interface ISettingField { fieldId: string; fieldValueList: IFieldValue[]; id: string; issueTypeId: string; projectId: number; statusId: string; } declare const _default: React.FunctionComponent<{ modal: any; selectedType: any; selectedTypeCode: any; record: any; customCirculationDataSet: any; }>; export default _default;