import React from 'react'; import { BizDictionaryProps, EnumData } from '../../biz-dictionary'; declare const DectionaryTypeMap: { readonly enum: "text"; readonly enumBadge: "badge"; readonly enumTag: "tag"; }; export type BizFieldValueEnum = EnumData; export interface EnumFieldProps extends Omit, 'type'> { type: keyof typeof DectionaryTypeMap; } declare const EnumField: React.FC; export default EnumField;