import React from 'react'; declare type FormLabelProps = { htmlFor?: TFieldName; } & (TFieldName extends string ? Omit, 'htmlFor'> : React.HTMLAttributes); export declare function FormLabel({ className, ...props }: FormLabelProps): JSX.Element; export {};