import { IMode, FormType } from './types'; interface Props { firstName: string; onSuggestion: (prompt: string, mode: IMode, formType?: FormType) => void; dynamicQuestions?: any[]; mode: IMode; } declare const ChatBotWelcome: ({ firstName, onSuggestion, dynamicQuestions, mode }: Props) => import("react/jsx-runtime").JSX.Element; export default ChatBotWelcome;