import React from "react"; import type { ControlledFormValue } from "../../internal/type"; interface Props extends ControlledFormValue { list: Enum[]; maxShownTagCount?: number; translator?: (enumValue: Enum) => string; disabled?: boolean; style?: React.CSSProperties; } export declare const MultipleEnumSelect: (props: Props) => React.JSX.Element; export {};