import { TSizeAll } from '../../types'; export interface FormComponentLabelUIProps extends React.LabelHTMLAttributes { size: TSizeAll; required?: boolean; /** * The `id` of the input element the label is bound to * @important Required for accessibility */ htmlFor: string; } export declare const FormComponentLabelUI: ({ children, required, size, className, ...props }: FormComponentLabelUIProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=FormComponentLabelUI.d.ts.map