/** * Component & its Props */ export interface Props { label: { label: string; width?: number; }; value: string | JSX.Element; additionalInfoLabel?: string | JSX.Element; infoLabelStyle?: React.CSSProperties; showTickIcon?: boolean; style?: React.CSSProperties; } export declare function LabeledText({ label, value, additionalInfoLabel, style, infoLabelStyle, }: Props): import("react/jsx-runtime").JSX.Element;