import React from "react"; interface KeyValuePairProps { /** * Label or key text */ label: string; /** * Value text */ value: React.ReactNode; /** * Additional CSS classes */ className?: string; /** * Test ID for automated testing */ testId?: string; keyClassName?: string; valueClassName?: string; labelClassName?: string; iconPrefix?: React.ReactNode; } /** * Displays a label-value pair for metrics and properties * * ## Business Perspective * * Standardizes the presentation of key metrics and properties across * the application, making technical information more digestible for * business stakeholders and decision-makers. 📊 * * @param props Component props * @returns React Element */ declare function KeyValuePair({ label, value, className, keyClassName, valueClassName, labelClassName, testId, iconPrefix, }: KeyValuePairProps): React.ReactElement; export { KeyValuePair }; export default KeyValuePair; //# sourceMappingURL=KeyValuePair.d.ts.map