import React from 'react'; export interface WelcomeScreenProps { visible: boolean; onClose: () => void; onComplete?: (token: string, email?: string) => void; appName?: string | null; webpageName?: string | null; signupAttribution?: Record | string | null; } declare const WelcomeScreen: React.FC; export default WelcomeScreen; //# sourceMappingURL=WelcomeScreen.d.ts.map