declare type PeraWalletType = "pera-wallet" | "pera-wallet-web"; declare type PeraWalletPlatformType = "mobile" | "web" | null; declare type PeraWalletFlowType = "EMBEDDED" | "NEW_TAB"; declare type AlgorandChainIDs = 416001 | 416002 | 416003 | 4160; interface PeraWalletDetails { type: PeraWalletType; accounts: string[]; selectedAccount: string; } export type { PeraWalletType, PeraWalletPlatformType, PeraWalletDetails, AlgorandChainIDs, PeraWalletFlowType };