import React from 'react'; import './index.less'; interface FiledOptions { fieldOptions?: any; fieldType: string; defaultValue: string; } interface IFieldPostData extends FiledOptions { id?: string; code: string; name: string; schemeCode: string; check?: boolean; objectVersionNumber?: number; issueTypeIds: string[]; extraConfig: any; createdLevel: string; syncIssueType?: string[]; } export declare type IFieldPostDataProps = IFieldPostData; declare const _default: React.FunctionComponent; export default _default;