export interface AppProps {} export interface WalletmanAppState { /* Paytm Personal */ showPaytmPersonalBind: boolean; paytmPersonalBindType: 'otpMode' | 'tokenMode'; showPaytmBusinessBind: boolean; /* PhonePe Personal */ showPhonePePersonalBind: boolean; phonePePersonalBindType: 'otpMode' | 'tokenMode'; showPhonePeBusinessBind: boolean; /* GooglePay Business */ showGooglePayBusinessBind: boolean; /* BharatPe Business */ showBharatPeBusinessBind: boolean; /* Mobikwik Personal */ showMobikwikPersonalBind: boolean; /* Freecharge Personal */ showFreechargePersonalBind: boolean; /* Proxy status */ proxyStatus: 'idle' | 'connecting' | 'connected' | 'disconnected' | 'error'; proxyError?: string; /* Server settings */ showServerSettings: boolean; settingsHost: string; settingsPort: string; }