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