@difizen/ai-flow
Version:
Scalable, out-of-the-box, agent-oriented flow
10 lines (9 loc) • 347 B
TypeScript
import type { BasicSchema } from "../../interfaces/flow";
export interface VariableFormProps {
label: string;
values: BasicSchema[];
onChange: (values: BasicSchema[]) => void;
dynamic?: boolean;
showRequired?: boolean;
}
export declare const VariableForm: (props: VariableFormProps) => import("react/jsx-runtime").JSX.Element;