UNPKG

@hhgtech/hhg-components

Version:
16 lines (15 loc) 562 B
import React, { FC } from 'react'; import { SubotBotItem, SubotNodeMessage } from "../../../interfaces/types"; import SubotInlineNode from "./subotInlineNode"; export type SubotInlineNodeProps = { node: SubotNodeMessage; indexNumber?: number; }; export type SubotInlineNodeStartProps = Omit<SubotInlineNodeProps, 'node'> & { node: SubotBotItem; setLoading: React.Dispatch<React.SetStateAction<boolean>>; }; export declare const SubotInlineNodeBase: { [key: string]: FC<SubotInlineNodeProps>; }; export default SubotInlineNode;