import { Label as LabelPrimitive } from 'radix-ui'; import type { ComponentPropsWithoutRef, ComponentPropsWithRef, ReactNode } from 'react'; type LabelRootProps = ComponentPropsWithoutRef; declare const LabelRoot: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; declare const Label: import("react").MemoExoticComponent, "ref"> & { required?: boolean; description?: ReactNode; descriptionProps?: ComponentPropsWithRef<"div">; disabled?: boolean; } & import("react").RefAttributes>>; export { Label, LabelRoot }; export type { LabelRootProps };