import * as React from "react"; import * as PropTypes from "prop-types"; import { FieldProps } from "../../types"; export default class AsArrayField extends React.Component { static propTypes: { schema: PropTypes.Validator; }>>>; formData: PropTypes.Requireable>; }; static getName(): string; getStateFromProps(props: FieldProps): { formData: any[]; schema: { title: any; type: string; items: any; maxItems: number; }; onChange: (formData: any[]) => void; errorSchema: import("@rjsf/utils").FieldErrors & { [x: string]: import("@rjsf/utils").ErrorSchema | undefined; }; formContext: import("../LajiForm").FormContext; registry: import("@rjsf/utils").FieldProps["registry"]; }; onChange: (formData: any[]) => void; }