import React from 'react'; export interface LabelProps extends React.LabelHTMLAttributes { /** * Whether the associated input is required */ isRequired?: boolean; /** * The child content */ children: React.ReactNode; } /** * Label component for form inputs with accessibility support * * @example * ```tsx * * * ``` */ export declare const Label: React.ForwardRefExoticComponent>; //# sourceMappingURL=Label.d.ts.map