import { FC } from 'react'; type FormFieldLabelProps = { /** If `true`, the label should be displayed in a disabled state. */ disabled?: boolean; /** If `true`, the label will indicate that the input is required. */ required?: boolean; }; export declare const FormFieldLabel: FC; export {};