import { BaseInputFieldProps, BaseInputProps } from '../../types/input'; import { LabelHTMLAttributes } from 'react'; export interface LabelProps extends LabelHTMLAttributes, Pick, Pick { /** If true, the label will appear non-interactable */ feDisabled?: boolean; /** If true, will indicate that the corresponding input is required */ feRequired?: boolean; } declare const Label: import("react").ForwardRefExoticComponent>; export default Label;