import React from 'react'; import type { TreeModel } from './types'; export declare type FieldProps = { tree: TreeModel; }; export declare const Field: ({ tree }: FieldProps) => React.JSX.Element;