import React from "react";
export type ValueDisplayProps = {
    label: string;
    value?: string;
};
export declare const ValueDisplay: React.FC<ValueDisplayProps>;
