import React, { type LabelHTMLAttributes } from 'react'; interface LabelProps extends LabelHTMLAttributes { htmlFor?: string; } export declare const Label: React.ForwardRefExoticComponent>; export {};