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