import { LabelHTMLAttributes } from 'react';
export interface FormLabelProps extends LabelHTMLAttributes {
label?: string;
required?: boolean;
className?: string;
htmlFor?: string;
}
export declare const FormLabel: import('react').ForwardRefExoticComponent>;