import React from 'react'; import { FieldSize, Intensity } from 'types'; export interface FieldLabelProps extends React.LabelHTMLAttributes { children: React.ReactNode; htmlFor: string; intensity?: Intensity; disabled?: boolean; fieldSize?: FieldSize; readOnly?: boolean; required?: boolean; } declare const FieldLabel: React.ForwardRefExoticComponent>; export default FieldLabel;