import type { KeyValuePair } from './types'; interface KeyValueEditorProps { items: KeyValuePair[]; onChange: (items: KeyValuePair[]) => void; keyPlaceholder?: string; valuePlaceholder?: string; dataCyPrefix: string; } export declare function KeyValueEditor({ items, onChange, keyPlaceholder, valuePlaceholder, dataCyPrefix, }: KeyValueEditorProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=KeyValueEditor.d.ts.map