import { FieldTemplateProps, FormContextType, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils'; /** The `FieldTemplate` component is the template used by `SchemaField` to render any field. It renders the field * content, (label, description, children, errors and help) inside of a `WrapIfAdditional` component. * @alpha * @param props - The `FieldTemplateProps` for this component */ export declare const FieldTemplate: (props: FieldTemplateProps) => import("react/jsx-runtime").JSX.Element;