import React from 'react';
import './style.scss';
type SimpleLabelValueProps = {
    label?: string | JSX.Element;
    value?: string | number | JSX.Element | JSX.Element[];
    color?: string;
    className?: string;
    dataId?: string;
};
declare const SimpleLabelValue: React.FC<SimpleLabelValueProps>;
export default SimpleLabelValue;
