@hhgtech/hhg-components
Version:
Hello Health Group common components
16 lines (15 loc) • 562 B
TypeScript
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;