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