export declare function DataField({ label, value, inline, showIfEmpty, className, children, unit, }: { label?: string; value?: any; inline?: boolean; showIfEmpty?: boolean; className?: string; children?: any; unit?: string; }): import('react').ReactElement<{ className: string; }, string | import('react').JSXElementConstructor> | null; export declare function ValueContainer({ value, unit, children, }: { value?: any; unit?: string; children?: any; }): import('react').DOMElement, Element>;