import { ProEnum } from '../propsType'; interface Props extends Pick { fieldValue: string; fieldLabel: string; } declare const ProEnumTag: (props: Props) => JSX.Element; export default ProEnumTag;