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;
