import { FunctionComponent } from 'react'; export type KeyValueType = Record; interface KeyValueProps { propName: string; initialModel?: KeyValueType; onChange: (model: KeyValueType) => void; disabled?: boolean; } export declare const KeyValue: FunctionComponent; export {}; //# sourceMappingURL=KeyValue.d.ts.map