import { Component } from 'react'; import { FieldProps, FormContextType, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils'; /** The `SchemaField` component determines whether it is necessary to rerender the component based on any props changes * and if so, calls the `SchemaFieldRender` component with the props. */ declare class SchemaField extends Component> { shouldComponentUpdate(nextProps: Readonly>): boolean; render(): import("react/jsx-runtime").JSX.Element; } export default SchemaField; //# sourceMappingURL=SchemaField.d.ts.map