import type { ProEnumType } from '../propsType'; interface Props extends Pick { fieldValue: string; fieldLabel: string; disabled?: boolean; allowClear?: boolean; button?: boolean; } declare const Group: (props: Props) => import("react/jsx-runtime").JSX.Element; export default Group;