import { BaseFieldProps } from './base-field.types'; /** * @internal * Base component provides the layout for the field which includes: * label (with or without tooltip), helper text and control. * It also provides the `error` and `full width` states for the field. * Should be used as a base for all other field components and should not be exposed to the end users. */ declare const BaseField: import('react').ForwardRefExoticComponent>; export default BaseField;