import { default as React } from 'react'; import { Label as LabelPrimitive } from '../label'; export type LabelProps = React.ComponentPropsWithoutRef & { /** This is used to connect label and trigger. The connection is made automatically, but if you override the id in the trigger, you will need to provide the id here as well. */ htmlFor?: string; }; /** Label for the radio button */ export declare const Label: React.ForwardRefExoticComponent, "ref"> & { disabled?: boolean; isRequired?: boolean; } & React.RefAttributes, "ref"> & { /** This is used to connect label and trigger. The connection is made automatically, but if you override the id in the trigger, you will need to provide the id here as well. */ htmlFor?: string; } & React.RefAttributes>;