UNPKG

rfa

Version:

**React Form Architect** is an ultimate solution for creating and rendering forms in React. Its main focus is to provide users with a tool to define, render and share a form in a browser.

11 lines (10 loc) 446 B
/// <reference types="react" /> import { FormContextType } from '../../../types/common-form-components-types'; import { KeyValueData } from '../../../model'; declare type TreeNodeDataInputProps = { data?: KeyValueData[]; allowUserDefinedData?: boolean; formContext: FormContextType; }; export declare const TreeNodeDataInput: ({ data, formContext, allowUserDefinedData, }: TreeNodeDataInputProps) => JSX.Element; export {};