import React from 'react'; import { I18nTranslations } from '../../types'; export interface WelcomeScreenProps { /** Traduções */ translations: I18nTranslations; /** Callback quando usuário clica em "Get Started" */ onGetStarted: () => void; /** Estilos do tema */ themeStyles?: { backgroundColor?: string; primaryColor?: string; textColor?: string; }; } /** * Tela de boas-vindas exibida antes do chat */ export declare const WelcomeScreen: React.FC; //# sourceMappingURL=WelcomeScreen.d.ts.map