@difizen/ai-flow
Version:
Scalable, out-of-the-box, agent-oriented flow
14 lines (13 loc) • 650 B
TypeScript
import type { SchemaValueType } from "../../interfaces/flow";
import type { DefaultOptionType } from 'antd/es/cascader';
import React from 'react';
export declare const ReferenceSelectRaw: (props: {
value?: SchemaValueType | undefined;
onChange?: ((value: SchemaValueType) => void) | undefined;
refOptions: DefaultOptionType[];
}) => import("react/jsx-runtime").JSX.Element;
export declare const ReferenceSelect: React.MemoExoticComponent<(props: {
value?: SchemaValueType | undefined;
onChange?: ((value: SchemaValueType) => void) | undefined;
refOptions: DefaultOptionType[];
}) => import("react/jsx-runtime").JSX.Element>;