UNPKG

@difizen/ai-flow

Version:

Scalable, out-of-the-box, agent-oriented flow

12 lines (11 loc) 540 B
import type { BasicSchema, NodeType } from "../../interfaces/flow"; import React from 'react'; export interface RefrenceFormProps { label: string; value: BasicSchema[] | undefined; onChange: (values: BasicSchema[]) => void; nodes: NodeType[] | undefined; dynamic?: boolean; } export declare const ReferenceFormRaw: (props: RefrenceFormProps) => import("react/jsx-runtime").JSX.Element; export declare const ReferenceForm: React.MemoExoticComponent<(props: RefrenceFormProps) => import("react/jsx-runtime").JSX.Element>;