import { FunctionComponent } from 'react';

interface KeyValueLabelProps {
    keyString: string;
    valueString: string;
}
declare const KeyValueLabel: FunctionComponent<KeyValueLabelProps>;

export { KeyValueLabel as default };
export type { KeyValueLabelProps };
