import React from 'react'; import type { Web2Config, Web2AuthResult } from '../types/auth'; interface Web2LoginDialogProps { isOpen: boolean; onClose: () => void; onBack?: () => void; embedded?: boolean; web2Config: Web2Config; onWeb2Authenticate: (web2Result: Web2AuthResult) => Promise; theme?: 'light' | 'dark'; loginButtonColors?: string[]; loginButtonTextColor?: string; } export declare const Web2LoginDialog: React.FC; export {};