import React from "react"; import type { ControlledFormValue } from "../../internal/type"; interface Props extends ControlledFormValue { list: readonly Enum[]; translator?: (enumValue: Enum) => React.ReactElement | string | number | null; disabledItems?: Enum[] | "all"; } export declare const EnumCheckboxGroup: ((props: Props) => React.JSX.Element) & { Map: ({ map, ...restProps }: import("./Map").Props) => React.JSX.Element; }; export {};