/** * Enables leaking any prop to any other prop container. * * uiSchema = {"ui:options": { * props: [ * { * from: If a regular string, a property to copy from formData. If a JSON pointer, the root will be this.props. * target: Target where to copy the 'from'. If a regular string, it will be copied to /uischema/ui:options. If a JSON pointer, the root will be this.props. * } */ export default class DataLeakerField extends React.Component { static propTypes: { uiSchema: PropTypes.Validator; fromArrayKey: PropTypes.Requireable; target: PropTypes.Requireable; joinArray: PropTypes.Requireable; }> | (PropTypes.InferProps<{ from: PropTypes.Validator; fromArrayKey: PropTypes.Requireable; target: PropTypes.Requireable; joinArray: PropTypes.Requireable; }> | null | undefined)[] | null | undefined>>; }>>; uiSchema: PropTypes.Requireable; }>>>; schema: PropTypes.Validator; }>>>; formData: PropTypes.Requireable; }; static getName(): string; constructor(props: any); constructor(props: any, context: any); getStateFromProps(props: any): any; } import * as React from "react"; import * as PropTypes from "prop-types";