import React from 'react'; import { IComponentBaseProps } from '../types'; export type LabelProps = React.LabelHTMLAttributes & IComponentBaseProps & { title?: string; }; declare const Label: React.ForwardRefExoticComponent & IComponentBaseProps & { title?: string | undefined; } & React.RefAttributes>; export default Label;