import * as LabelPrimitive from "@radix-ui/react-label"; import type { ComponentPropsWithoutRef } from "react"; /** * Label — form field label built on Radix Label. * * Behaviors: * - Clicking the label focuses the associated `htmlFor` input. * - Adds a small red asterisk when `required` is set. * - Inherits disabled visuals from the wrapper (`peer-disabled`). */ interface LabelProps extends ComponentPropsWithoutRef { required?: boolean; } declare const Label: import("react").ForwardRefExoticComponent>; export { Label };