import { LabelHTMLAttributes } from 'react'; interface LabelProps extends Omit, HTMLLabelElement>, 'children'> { text: string required?: boolean } function Label({ text, required, title, className, ...props }: LabelProps) { return ( ); } export default Label;