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