import type { FC, PropsWithChildren, ReactNode } from 'react'; type Props = { className?: string; description?: ReactNode; required?: boolean; hasErrors?: boolean; htmlFor?: string; dataTestId?: string; }; export declare const Label: FC>; export {};