import { FC, LabelHTMLAttributes } from "react"; export interface IStyledLabelProps extends LabelHTMLAttributes { className?: string; children: any; } declare const Label: FC; export default Label;