/// //@ts-ignore import React, { Component } from 'react'; import { PropertyEditorProps } from '@dt/core-ui'; /// //@ts-ignore import { i18n } from 'i18next'; export declare type KeyValuePairEditorLocalization = { emptyName?: string; emptyValue?: string; }; export declare type KeyValuePairPropertyEditorProps = PropertyEditorProps & KeyValuePairEditorLocalization & { keyPath?: string; valuePath?: string; in17n: i18n; }; export declare class KeyValuePairEditor extends Component { render(): React.JSX.Element; }