import useEnum from './hooks/useEnum'; import { ProEnumProps } from './propsType'; import './style/index.less'; declare const ProEnum: { (props: ProEnumProps): JSX.Element; getEnumLabel: (code: string | string[], value: any, compose?: boolean, fieldNameLabel?: string, fieldNameValue?: string) => JSX.Element; useEnum: typeof useEnum; }; export default ProEnum;