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 & { node: SubotBotItem; setLoading: React.Dispatch>; }; export declare const SubotInlineNodeBase: { [key: string]: FC; }; export default SubotInlineNode;