export interface FormLabelProps extends React.HTMLProps<HTMLLabelElement> {
    htmlFor: string;
}
declare const FormLabel: React.FC<FormLabelProps>;
export default FormLabel;
