import { FieldProps } from "../../types";
/**
 * Field that allows edition of key value pairs.
 *
 * @group Form fields
 */
export declare function KeyValueFieldBinding({ propertyKey, value, showError, error, disabled, property, setValue, minimalistView, includeDescription, underlyingValueHasChanged, autoFocus, context }: FieldProps<Record<string, any>>): import("react/jsx-runtime").JSX.Element;
