import { FieldProps, JSONSchemaEnum } from "../../types"; /** * Constructs selects from given tree. * uiSchema = {"ui:options": { * tree: {}, (node object: {children: {key: {}, key2:{}}, order: ["key", "key2"]} (order is optional) * labels: [] * } */ export default function SelectTreeField(props: FieldProps): JSX.Element;