import React, { FC } from 'react';
import { SubotNodeIntent } from "../../../interfaces/types";
import SubotInlineIntent from "./subotInlineIntent";
import SubotInlineIntentFinal from "./subotInlineIntentFinal";
/*******************************************************************************/
/*************************** NodeIntentType: 'bot-text' ************************/
export declare const SubotInlineIntentBotText: FC<SubotInlineIntentItemProps>;
/*************************** END - NodeIntentType: 'bot-text' ******************/
/*******************************************************************************/
/*******************************************************************************/
/*************************** NodeIntentType: 'bot-image' ***********************/
export declare const SubotInlineIntentBotImage: FC<SubotInlineIntentItemProps>;
/*************************** END - NodeIntentType: 'bot-image' *****************/
/*******************************************************************************/
/*******************************************************************************/
/*************************** NodeIntentType: 'bot-button' **********************/
export declare const SubotInlineIntentBotButton: FC<SubotInlineIntentItemProps>;
/*************************** END - NodeIntentType: 'bot-button' ****************/
/*******************************************************************************/
/*******************************************************************************/
/*************************** NodeIntentType: 'bot-url' *************************/
export declare const SubotInlineIntentUrl: FC<SubotInlineIntentItemProps>;
/*************************** END - NodeIntentType: 'bot-url' *******************/
/*******************************************************************************/
/*******************************************************************************/
/*************************** NodeIntentType: 'sso-intent' *************************/
export declare const SubotInlineIntentSSO: FC<SubotInlineIntentItemProps>;
/*************************** END - NodeIntentType: 'sso-intent' *******************/
/*******************************************************************************/
/*******************************************************************************/
/*************************** NodeIntentType: 'bot-title' ***********************/
export declare const SubotInlineIntentBotTitle: ({ intent, indexNumber, }: {
    intent?: SubotNodeIntent;
    indexNumber?: number;
}) => React.JSX.Element;
/*************************** END - NodeIntentType: 'bot-title' *****************/
/*******************************************************************************/
/*******************************************************************************/
/*************************** NodeIntentType: 'bot-main-title' ******************/
export declare const SubotInlineIntentBotMainTitle: FC<SubotInlineIntentItemProps>;
/*************************** END - NodeIntentType: 'bot-main-title' ************/
/*******************************************************************************/
/*******************************************************************************/
/*************************** NodeIntentType: 'bot-main-image' ******************/
export declare const SubotInlineIntentBotMainImage: FC<SubotInlineIntentItemProps>;
/*************************** END - NodeIntentType: 'bot-main-image' ************/
/*******************************************************************************/
/*******************************************************************************/
/*************************** NodeIntentType: 'bot-main-body' ******************/
export declare const SubotInlineIntentBotMainBody: FC<SubotInlineIntentItemProps>;
/*************************** END - NodeIntentType: 'bot-main-body' ************/
/*******************************************************************************/
/*******************************************************************************/
/*************************** NodeIntentType: 'bot-main-button' *****************/
export declare const SubotInlineIntentBotMainButton: FC<SubotInlineIntentItemProps>;
/*************************** END - NodeIntentType: 'bot-main-button' ***********/
/*******************************************************************************/
/*******************************************************************************/
/*************************** NodeIntentType: 'bot-recalculate' *****************/
export declare const SubotInlineIntentBotRecalculate: FC<SubotInlineIntentItemProps>;
/*************************** END - NodeIntentType: 'bot-recalculate' ***********/
/*******************************************************************************/
/*******************************************************************************/
/*************************** NodeIntentType: 'bot-risk-screener' ***************/
export declare const SubotInlineIntentBotRiskScreener: FC<SubotInlineIntentItemProps>;
/*************************** END - NodeIntentType: 'bot-risk-screener' *********/
/*******************************************************************************/
/*******************************************************************************/
/*************************** NodeIntentType: 'bot-related-article' *************/
export declare const SubotInlineIntentBotRelatedArticle: FC<SubotInlineIntentItemProps>;
/*************************** END - NodeIntentType: 'bot-related-article' *******/
/*******************************************************************************/
/*******************************************************************************/
/*************************** NodeIntentType: 'thank-you-image' *****************/
export declare const SubotInlineIntentThankYouImage: FC<SubotInlineIntentItemProps>;
/*************************** END - NodeIntentType: 'thank-you-image' ***********/
/*******************************************************************************/
/*******************************************************************************/
/*************************** NodeIntentType: 'thank-you-title' *****************/
export declare const SubotInlineIntentThankYouTitle: FC<SubotInlineIntentItemProps>;
/*************************** END - NodeIntentType: 'thank-you-title' ***********/
/*******************************************************************************/
/*******************************************************************************/
/*************************** NodeIntentType: 'thank-you-body' ******************/
export declare const SubotInlineIntentThankYouBody: FC<SubotInlineIntentItemProps>;
/*************************** END - NodeIntentType: 'thank-you-body' ************/
/*******************************************************************************/
declare const SubotInlineIntentBase: {
    [key: string]: FC<SubotInlineIntentItemProps>;
};
export { SubotInlineIntentBase, SubotInlineIntentFinal };
export type SubotInlineIntentProps = {
    intents: Array<SubotNodeIntent>;
    indexNumber?: number;
};
export type SubotInlineIntentItemProps = {
    intent: SubotNodeIntent;
    indexNumber?: number;
};
export default SubotInlineIntent;
