import { LabelHTMLAttributes, ReactElement } from 'react'; export type LabelPrimitiveProps = LabelHTMLAttributes & { children: string | ReactElement; inline?: boolean; required?: boolean; }; declare const Label: import("react").ForwardRefExoticComponent & { children: string | ReactElement; inline?: boolean; required?: boolean; } & import("react").RefAttributes>; export default Label;