/** * Transforms an object schema containing arrays to an array schema containing objects. * * uischema = {"ui:options": { * uiSchema: (uiSchema which is passed to array items) * } */ export default class ArrayCombinerField extends React.Component { static propTypes: { uiSchema: PropTypes.Validator; }>>; uiSchema: PropTypes.Requireable; }>>>; schema: PropTypes.Validator; }>>>; formData: PropTypes.Validator; }; static getName(): string; constructor(props: any); constructor(props: any, context: any); getStateFromProps(props: any): { schema: { type: string; }; errorSchema: any; formData: any; uiSchema: any; onChange: (formData: any) => void; }; onChange: (formData: any) => void; } import * as React from "react"; import * as PropTypes from "prop-types";