import React from "react"; import type { BaseProps } from "./index"; import type { ControlledFormValue } from "../../internal/type"; export interface Props extends Omit, "list" | "translator">, ControlledFormValue { map: Record; } export declare const Map: ({ map, ...restProps }: Props) => React.JSX.Element;