import React from 'react'; import './index.less'; interface ILabelValueProps { label?: any; value?: any; emptyValue?: string; className?: string; noWrap?: boolean; noColon?: boolean; style?: React.CSSProperties; labelStyle?: React.CSSProperties; valueStyle?: React.CSSProperties; } declare function LabelValue({ label, value, emptyValue, className, style, labelStyle, valueStyle, noWrap, noColon }: ILabelValueProps): JSX.Element; declare namespace LabelValue { var defaultProps: { value: string; emptyValue: string; noWrap: boolean; className: string; }; } export default LabelValue;