import { PureComponent } from 'react'; import { IProps } from '../../libs/interfaces'; interface ILabelProps extends IProps { value?: string; required?: boolean; children?: any; } declare class Label extends PureComponent { static defaultProps: ILabelProps; render(): JSX.Element; } export { Label, ILabelProps };