/// import type { SelectProps } from 'antd/es/select'; export interface IEnumSelectProps extends SelectProps { /** * 数据源列表 */ enums?: T[]; /** * key&值对应的 属性名 */ keyProp?: keyof Record; /** * label对应的属性名 */ labelProp?: keyof Record; } export default function (props: IEnumSelectProps): JSX.Element;