import * as React from "react"; import { type VariantProps } from "../../utils.js"; declare const labelValueVariants: (props?: ({ weight?: "strong" | "light" | null | undefined; disabled?: boolean | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; interface LabelValueProps extends VariantProps { value: React.ReactNode; } declare const LabelValue: ({ value, weight, disabled }: LabelValueProps) => React.JSX.Element; export { LabelValue, type LabelValueProps };