import { z } from 'zod'; export declare const GetTransactionByHashResponse: z.ZodObject<{ accessList: z.ZodArray; blockHash: z.ZodNullable; blockNumber: z.ZodNullable; chainId: z.ZodString; from: z.ZodString; gas: z.ZodString; hash: z.ZodString; input: z.ZodNullable; maxFeePerGas: z.ZodString; maxPriorityFeePerGas: z.ZodString; nonce: z.ZodString; r: z.ZodString; s: z.ZodString; to: z.ZodString; transactionIndex: z.ZodNullable; type: z.ZodString; v: z.ZodString; value: z.ZodString; }, "strip", z.ZodTypeAny, { type: string; value: string; accessList: string[]; blockHash: string | null; blockNumber: string | null; chainId: string; from: string; gas: string; hash: string; input: string | null; maxFeePerGas: string; maxPriorityFeePerGas: string; nonce: string; r: string; s: string; to: string; transactionIndex: string | null; v: string; }, { type: string; value: string; accessList: string[]; blockHash: string | null; blockNumber: string | null; chainId: string; from: string; gas: string; hash: string; input: string | null; maxFeePerGas: string; maxPriorityFeePerGas: string; nonce: string; r: string; s: string; to: string; transactionIndex: string | null; v: string; }>; export declare const AppSwitchNetworkRequest: z.ZodObject<{ chainId: z.ZodNumber; }, "strip", z.ZodTypeAny, { chainId: number; }, { chainId: number; }>; export declare const AppConnectEmailRequest: z.ZodObject<{ email: z.ZodString; }, "strip", z.ZodTypeAny, { email: string; }, { email: string; }>; export declare const AppConnectOtpRequest: z.ZodObject<{ otp: z.ZodString; }, "strip", z.ZodTypeAny, { otp: string; }, { otp: string; }>; export declare const AppConnectSocialRequest: z.ZodObject<{ uri: z.ZodString; }, "strip", z.ZodTypeAny, { uri: string; }, { uri: string; }>; export declare const AppGetSocialRedirectUriRequest: z.ZodObject<{ provider: z.ZodEnum<["google", "github", "apple", "facebook", "x", "discord", "farcaster"]>; }, "strip", z.ZodTypeAny, { provider: "google" | "github" | "apple" | "facebook" | "x" | "discord" | "farcaster"; }, { provider: "google" | "github" | "apple" | "facebook" | "x" | "discord" | "farcaster"; }>; export declare const AppGetUserRequest: z.ZodObject<{ chainId: z.ZodOptional; preferredAccountType: z.ZodOptional>; }, "strip", z.ZodTypeAny, { chainId?: number | undefined; preferredAccountType?: "eoa" | "smartAccount" | undefined; }, { chainId?: number | undefined; preferredAccountType?: "eoa" | "smartAccount" | undefined; }>; export declare const AppUpdateEmailRequest: z.ZodObject<{ email: z.ZodString; }, "strip", z.ZodTypeAny, { email: string; }, { email: string; }>; export declare const AppUpdateEmailPrimaryOtpRequest: z.ZodObject<{ otp: z.ZodString; }, "strip", z.ZodTypeAny, { otp: string; }, { otp: string; }>; export declare const AppUpdateEmailSecondaryOtpRequest: z.ZodObject<{ otp: z.ZodString; }, "strip", z.ZodTypeAny, { otp: string; }, { otp: string; }>; export declare const AppSyncThemeRequest: z.ZodObject<{ themeMode: z.ZodOptional>; themeVariables: z.ZodOptional>>; w3mThemeVariables: z.ZodOptional>>; }, "strip", z.ZodTypeAny, { themeMode?: "light" | "dark" | undefined; themeVariables?: Record | undefined; w3mThemeVariables?: Record | undefined; }, { themeMode?: "light" | "dark" | undefined; themeVariables?: Record | undefined; w3mThemeVariables?: Record | undefined; }>; export declare const AppSyncDappDataRequest: z.ZodObject<{ metadata: z.ZodOptional; }, "strip", z.ZodTypeAny, { name: string; description: string; url: string; icons: string[]; }, { name: string; description: string; url: string; icons: string[]; }>>; sdkVersion: z.ZodType<`react-native-wagmi-${string}` | `react-native-ethers5-${string}` | `react-native-ethers-${string}`, z.ZodTypeDef, `react-native-wagmi-${string}` | `react-native-ethers5-${string}` | `react-native-ethers-${string}`>; sdkType: z.ZodEnum<["appkit"]>; projectId: z.ZodString; }, "strip", z.ZodTypeAny, { sdkType: "appkit"; projectId: string; sdkVersion: (`react-native-wagmi-${string}` | `react-native-ethers5-${string}` | `react-native-ethers-${string}`) & (`react-native-wagmi-${string}` | `react-native-ethers5-${string}` | `react-native-ethers-${string}` | undefined); metadata?: { name: string; description: string; url: string; icons: string[]; } | undefined; }, { sdkType: "appkit"; projectId: string; sdkVersion: (`react-native-wagmi-${string}` | `react-native-ethers5-${string}` | `react-native-ethers-${string}`) & (`react-native-wagmi-${string}` | `react-native-ethers5-${string}` | `react-native-ethers-${string}` | undefined); metadata?: { name: string; description: string; url: string; icons: string[]; } | undefined; }>; export declare const AppSetPreferredAccountRequest: z.ZodObject<{ type: z.ZodString; }, "strip", z.ZodTypeAny, { type: string; }, { type: string; }>; export declare const FrameConnectEmailResponse: z.ZodObject<{ action: z.ZodEnum<["VERIFY_DEVICE", "VERIFY_OTP"]>; }, "strip", z.ZodTypeAny, { action: "VERIFY_DEVICE" | "VERIFY_OTP"; }, { action: "VERIFY_DEVICE" | "VERIFY_OTP"; }>; export declare const FrameUpdateEmailResponse: z.ZodObject<{ action: z.ZodEnum<["VERIFY_PRIMARY_OTP", "VERIFY_SECONDARY_OTP"]>; }, "strip", z.ZodTypeAny, { action: "VERIFY_PRIMARY_OTP" | "VERIFY_SECONDARY_OTP"; }, { action: "VERIFY_PRIMARY_OTP" | "VERIFY_SECONDARY_OTP"; }>; export declare const FrameGetUserResponse: z.ZodObject<{ email: z.ZodNullable>; address: z.ZodString; chainId: z.ZodNumber; smartAccountDeployed: z.ZodBoolean; preferredAccountType: z.ZodEnum<["eoa", "smartAccount"]>; }, "strip", z.ZodTypeAny, { chainId: number; preferredAccountType: "eoa" | "smartAccount"; address: string; smartAccountDeployed: boolean; email?: string | null | undefined; }, { chainId: number; preferredAccountType: "eoa" | "smartAccount"; address: string; smartAccountDeployed: boolean; email?: string | null | undefined; }>; export declare const FrameIsConnectedResponse: z.ZodObject<{ isConnected: z.ZodBoolean; }, "strip", z.ZodTypeAny, { isConnected: boolean; }, { isConnected: boolean; }>; export declare const FrameGetChainIdResponse: z.ZodObject<{ chainId: z.ZodNumber; }, "strip", z.ZodTypeAny, { chainId: number; }, { chainId: number; }>; export declare const FrameSwitchNetworkResponse: z.ZodObject<{ chainId: z.ZodNumber; }, "strip", z.ZodTypeAny, { chainId: number; }, { chainId: number; }>; export declare const FrameUpdateEmailSecondaryOtpResponse: z.ZodObject<{ newEmail: z.ZodString; }, "strip", z.ZodTypeAny, { newEmail: string; }, { newEmail: string; }>; export declare const FrameGetSocialRedirectUriResponse: z.ZodObject<{ uri: z.ZodString; }, "strip", z.ZodTypeAny, { uri: string; }, { uri: string; }>; export declare const FrameConnectSocialResponse: z.ZodObject<{ email: z.ZodString; address: z.ZodString; chainId: z.ZodUnion<[z.ZodString, z.ZodNumber]>; accounts: z.ZodOptional; }, "strip", z.ZodTypeAny, { type: "eoa" | "smartAccount"; address: string; }, { type: "eoa" | "smartAccount"; address: string; }>, "many">>; userName: z.ZodOptional; }, "strip", z.ZodTypeAny, { chainId: string | number; email: string; address: string; accounts?: { type: "eoa" | "smartAccount"; address: string; }[] | undefined; userName?: string | undefined; }, { chainId: string | number; email: string; address: string; accounts?: { type: "eoa" | "smartAccount"; address: string; }[] | undefined; userName?: string | undefined; }>; export declare const FrameGetFarcasterUriResponse: z.ZodObject<{ url: z.ZodString; }, "strip", z.ZodTypeAny, { url: string; }, { url: string; }>; export declare const FrameConnectFarcasterResponse: z.ZodObject<{ userName: z.ZodString; }, "strip", z.ZodTypeAny, { userName: string; }, { userName: string; }>; export declare const FrameSetPreferredAccountResponse: z.ZodObject<{ type: z.ZodEnum<["eoa", "smartAccount"]>; address: z.ZodString; }, "strip", z.ZodTypeAny, { type: "eoa" | "smartAccount"; address: string; }, { type: "eoa" | "smartAccount"; address: string; }>; export declare const FrameGetSmartAccountEnabledNetworksResponse: z.ZodObject<{ smartAccountEnabledNetworks: z.ZodArray; }, "strip", z.ZodTypeAny, { smartAccountEnabledNetworks: number[]; }, { smartAccountEnabledNetworks: number[]; }>; export declare const RpcResponse: z.ZodAny; export declare const RpcEthAccountsRequest: z.ZodObject<{ method: z.ZodLiteral<"eth_accounts">; }, "strip", z.ZodTypeAny, { method: "eth_accounts"; }, { method: "eth_accounts"; }>; export declare const RpcEthBlockNumber: z.ZodObject<{ method: z.ZodLiteral<"eth_blockNumber">; }, "strip", z.ZodTypeAny, { method: "eth_blockNumber"; }, { method: "eth_blockNumber"; }>; export declare const RpcEthCall: z.ZodObject<{ method: z.ZodLiteral<"eth_call">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_call"; }, { params: any[]; method: "eth_call"; }>; export declare const RpcEthChainId: z.ZodObject<{ method: z.ZodLiteral<"eth_chainId">; }, "strip", z.ZodTypeAny, { method: "eth_chainId"; }, { method: "eth_chainId"; }>; export declare const RpcEthEstimateGas: z.ZodObject<{ method: z.ZodLiteral<"eth_estimateGas">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_estimateGas"; }, { params: any[]; method: "eth_estimateGas"; }>; export declare const RpcEthFeeHistory: z.ZodObject<{ method: z.ZodLiteral<"eth_feeHistory">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_feeHistory"; }, { params: any[]; method: "eth_feeHistory"; }>; export declare const RpcEthGasPrice: z.ZodObject<{ method: z.ZodLiteral<"eth_gasPrice">; }, "strip", z.ZodTypeAny, { method: "eth_gasPrice"; }, { method: "eth_gasPrice"; }>; export declare const RpcEthGetAccount: z.ZodObject<{ method: z.ZodLiteral<"eth_getAccount">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getAccount"; }, { params: any[]; method: "eth_getAccount"; }>; export declare const RpcEthGetBalance: z.ZodObject<{ method: z.ZodLiteral<"eth_getBalance">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getBalance"; }, { params: any[]; method: "eth_getBalance"; }>; export declare const RpcEthGetBlockyByHash: z.ZodObject<{ method: z.ZodLiteral<"eth_getBlockByHash">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getBlockByHash"; }, { params: any[]; method: "eth_getBlockByHash"; }>; export declare const RpcEthGetBlockByNumber: z.ZodObject<{ method: z.ZodLiteral<"eth_getBlockByNumber">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getBlockByNumber"; }, { params: any[]; method: "eth_getBlockByNumber"; }>; export declare const RpcEthGetBlockReceipts: z.ZodObject<{ method: z.ZodLiteral<"eth_getBlockReceipts">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getBlockReceipts"; }, { params: any[]; method: "eth_getBlockReceipts"; }>; export declare const RcpEthGetBlockTransactionCountByHash: z.ZodObject<{ method: z.ZodLiteral<"eth_getBlockTransactionCountByHash">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getBlockTransactionCountByHash"; }, { params: any[]; method: "eth_getBlockTransactionCountByHash"; }>; export declare const RcpEthGetBlockTransactionCountByNumber: z.ZodObject<{ method: z.ZodLiteral<"eth_getBlockTransactionCountByNumber">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getBlockTransactionCountByNumber"; }, { params: any[]; method: "eth_getBlockTransactionCountByNumber"; }>; export declare const RpcEthGetCode: z.ZodObject<{ method: z.ZodLiteral<"eth_getCode">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getCode"; }, { params: any[]; method: "eth_getCode"; }>; export declare const RpcEthGetFilter: z.ZodObject<{ method: z.ZodLiteral<"eth_getFilterChanges">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getFilterChanges"; }, { params: any[]; method: "eth_getFilterChanges"; }>; export declare const RpcEthGetFilterLogs: z.ZodObject<{ method: z.ZodLiteral<"eth_getFilterLogs">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getFilterLogs"; }, { params: any[]; method: "eth_getFilterLogs"; }>; export declare const RpcEthGetLogs: z.ZodObject<{ method: z.ZodLiteral<"eth_getLogs">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getLogs"; }, { params: any[]; method: "eth_getLogs"; }>; export declare const RpcEthGetProof: z.ZodObject<{ method: z.ZodLiteral<"eth_getProof">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getProof"; }, { params: any[]; method: "eth_getProof"; }>; export declare const RpcEthGetStorageAt: z.ZodObject<{ method: z.ZodLiteral<"eth_getStorageAt">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getStorageAt"; }, { params: any[]; method: "eth_getStorageAt"; }>; export declare const RpcEthGetTransactionByBlockHashAndIndex: z.ZodObject<{ method: z.ZodLiteral<"eth_getTransactionByBlockHashAndIndex">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getTransactionByBlockHashAndIndex"; }, { params: any[]; method: "eth_getTransactionByBlockHashAndIndex"; }>; export declare const RpcEthGetTransactionByBlockNumberAndIndex: z.ZodObject<{ method: z.ZodLiteral<"eth_getTransactionByBlockNumberAndIndex">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getTransactionByBlockNumberAndIndex"; }, { params: any[]; method: "eth_getTransactionByBlockNumberAndIndex"; }>; export declare const RpcEthGetTransactionByHash: z.ZodObject<{ method: z.ZodLiteral<"eth_getTransactionByHash">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getTransactionByHash"; }, { params: any[]; method: "eth_getTransactionByHash"; }>; export declare const RpcEthGetTransactionCount: z.ZodObject<{ method: z.ZodLiteral<"eth_getTransactionCount">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getTransactionCount"; }, { params: any[]; method: "eth_getTransactionCount"; }>; export declare const RpcEthGetTransactionReceipt: z.ZodObject<{ method: z.ZodLiteral<"eth_getTransactionReceipt">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getTransactionReceipt"; }, { params: any[]; method: "eth_getTransactionReceipt"; }>; export declare const RpcEthGetUncleCountByBlockHash: z.ZodObject<{ method: z.ZodLiteral<"eth_getUncleCountByBlockHash">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getUncleCountByBlockHash"; }, { params: any[]; method: "eth_getUncleCountByBlockHash"; }>; export declare const RpcEthGetUncleCountByBlockNumber: z.ZodObject<{ method: z.ZodLiteral<"eth_getUncleCountByBlockNumber">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getUncleCountByBlockNumber"; }, { params: any[]; method: "eth_getUncleCountByBlockNumber"; }>; export declare const RpcEthMaxPriorityFeePerGas: z.ZodObject<{ method: z.ZodLiteral<"eth_maxPriorityFeePerGas">; }, "strip", z.ZodTypeAny, { method: "eth_maxPriorityFeePerGas"; }, { method: "eth_maxPriorityFeePerGas"; }>; export declare const RpcEthNewBlockFilter: z.ZodObject<{ method: z.ZodLiteral<"eth_newBlockFilter">; }, "strip", z.ZodTypeAny, { method: "eth_newBlockFilter"; }, { method: "eth_newBlockFilter"; }>; export declare const RpcEthNewFilter: z.ZodObject<{ method: z.ZodLiteral<"eth_newFilter">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_newFilter"; }, { params: any[]; method: "eth_newFilter"; }>; export declare const RpcEthNewPendingTransactionFilter: z.ZodObject<{ method: z.ZodLiteral<"eth_newPendingTransactionFilter">; }, "strip", z.ZodTypeAny, { method: "eth_newPendingTransactionFilter"; }, { method: "eth_newPendingTransactionFilter"; }>; export declare const RpcEthSendRawTransaction: z.ZodObject<{ method: z.ZodLiteral<"eth_sendRawTransaction">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_sendRawTransaction"; }, { params: any[]; method: "eth_sendRawTransaction"; }>; export declare const RpcEthSyncing: z.ZodObject<{ method: z.ZodLiteral<"eth_syncing">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_syncing"; }, { params: any[]; method: "eth_syncing"; }>; export declare const RpcUnistallFilter: z.ZodObject<{ method: z.ZodLiteral<"eth_uninstallFilter">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_uninstallFilter"; }, { params: any[]; method: "eth_uninstallFilter"; }>; export declare const RpcPersonalSignRequest: z.ZodObject<{ method: z.ZodLiteral<"personal_sign">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "personal_sign"; }, { params: any[]; method: "personal_sign"; }>; export declare const RpcEthSignTypedDataV4: z.ZodObject<{ method: z.ZodLiteral<"eth_signTypedData_v4">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_signTypedData_v4"; }, { params: any[]; method: "eth_signTypedData_v4"; }>; export declare const RpcEthSendTransactionRequest: z.ZodObject<{ method: z.ZodLiteral<"eth_sendTransaction">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_sendTransaction"; }, { params: any[]; method: "eth_sendTransaction"; }>; export declare const FrameSession: z.ZodObject<{ token: z.ZodString; }, "strip", z.ZodTypeAny, { token: string; }, { token: string; }>; export declare const EventSchema: z.ZodObject<{ id: z.ZodOptional; }, "strip", z.ZodTypeAny, { id?: string | undefined; }, { id?: string | undefined; }>; export declare const AppKitFrameSchema: { appEvent: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-app/SWITCH_NETWORK">; payload: z.ZodObject<{ chainId: z.ZodNumber; }, "strip", z.ZodTypeAny, { chainId: number; }, { chainId: number; }>; }, "strip", z.ZodTypeAny, { type: "@w3m-app/SWITCH_NETWORK"; payload: { chainId: number; }; id?: string | undefined; }, { type: "@w3m-app/SWITCH_NETWORK"; payload: { chainId: number; }; id?: string | undefined; }>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-app/CONNECT_EMAIL">; payload: z.ZodObject<{ email: z.ZodString; }, "strip", z.ZodTypeAny, { email: string; }, { email: string; }>; }, "strip", z.ZodTypeAny, { type: "@w3m-app/CONNECT_EMAIL"; payload: { email: string; }; id?: string | undefined; }, { type: "@w3m-app/CONNECT_EMAIL"; payload: { email: string; }; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-app/CONNECT_DEVICE">; }, "strip", z.ZodTypeAny, { type: "@w3m-app/CONNECT_DEVICE"; id?: string | undefined; }, { type: "@w3m-app/CONNECT_DEVICE"; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-app/CONNECT_OTP">; payload: z.ZodObject<{ otp: z.ZodString; }, "strip", z.ZodTypeAny, { otp: string; }, { otp: string; }>; }, "strip", z.ZodTypeAny, { type: "@w3m-app/CONNECT_OTP"; payload: { otp: string; }; id?: string | undefined; }, { type: "@w3m-app/CONNECT_OTP"; payload: { otp: string; }; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-app/CONNECT_SOCIAL">; payload: z.ZodObject<{ uri: z.ZodString; }, "strip", z.ZodTypeAny, { uri: string; }, { uri: string; }>; }, "strip", z.ZodTypeAny, { type: "@w3m-app/CONNECT_SOCIAL"; payload: { uri: string; }; id?: string | undefined; }, { type: "@w3m-app/CONNECT_SOCIAL"; payload: { uri: string; }; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-app/GET_USER">; payload: z.ZodOptional; preferredAccountType: z.ZodOptional>; }, "strip", z.ZodTypeAny, { chainId?: number | undefined; preferredAccountType?: "eoa" | "smartAccount" | undefined; }, { chainId?: number | undefined; preferredAccountType?: "eoa" | "smartAccount" | undefined; }>>; }, "strip", z.ZodTypeAny, { type: "@w3m-app/GET_USER"; id?: string | undefined; payload?: { chainId?: number | undefined; preferredAccountType?: "eoa" | "smartAccount" | undefined; } | undefined; }, { type: "@w3m-app/GET_USER"; id?: string | undefined; payload?: { chainId?: number | undefined; preferredAccountType?: "eoa" | "smartAccount" | undefined; } | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-app/GET_SOCIAL_REDIRECT_URI">; payload: z.ZodObject<{ provider: z.ZodEnum<["google", "github", "apple", "facebook", "x", "discord", "farcaster"]>; }, "strip", z.ZodTypeAny, { provider: "google" | "github" | "apple" | "facebook" | "x" | "discord" | "farcaster"; }, { provider: "google" | "github" | "apple" | "facebook" | "x" | "discord" | "farcaster"; }>; }, "strip", z.ZodTypeAny, { type: "@w3m-app/GET_SOCIAL_REDIRECT_URI"; payload: { provider: "google" | "github" | "apple" | "facebook" | "x" | "discord" | "farcaster"; }; id?: string | undefined; }, { type: "@w3m-app/GET_SOCIAL_REDIRECT_URI"; payload: { provider: "google" | "github" | "apple" | "facebook" | "x" | "discord" | "farcaster"; }; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-app/GET_FARCASTER_URI">; }, "strip", z.ZodTypeAny, { type: "@w3m-app/GET_FARCASTER_URI"; id?: string | undefined; }, { type: "@w3m-app/GET_FARCASTER_URI"; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-app/CONNECT_FARCASTER">; }, "strip", z.ZodTypeAny, { type: "@w3m-app/CONNECT_FARCASTER"; id?: string | undefined; }, { type: "@w3m-app/CONNECT_FARCASTER"; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-app/SIGN_OUT">; }, "strip", z.ZodTypeAny, { type: "@w3m-app/SIGN_OUT"; id?: string | undefined; }, { type: "@w3m-app/SIGN_OUT"; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-app/IS_CONNECTED">; payload: z.ZodOptional>; }, "strip", z.ZodTypeAny, { type: "@w3m-app/IS_CONNECTED"; id?: string | undefined; payload?: { token: string; } | undefined; }, { type: "@w3m-app/IS_CONNECTED"; id?: string | undefined; payload?: { token: string; } | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-app/GET_CHAIN_ID">; }, "strip", z.ZodTypeAny, { type: "@w3m-app/GET_CHAIN_ID"; id?: string | undefined; }, { type: "@w3m-app/GET_CHAIN_ID"; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-app/GET_SMART_ACCOUNT_ENABLED_NETWORKS">; }, "strip", z.ZodTypeAny, { type: "@w3m-app/GET_SMART_ACCOUNT_ENABLED_NETWORKS"; id?: string | undefined; }, { type: "@w3m-app/GET_SMART_ACCOUNT_ENABLED_NETWORKS"; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-app/SET_PREFERRED_ACCOUNT">; payload: z.ZodObject<{ type: z.ZodString; }, "strip", z.ZodTypeAny, { type: string; }, { type: string; }>; }, "strip", z.ZodTypeAny, { type: "@w3m-app/SET_PREFERRED_ACCOUNT"; payload: { type: string; }; id?: string | undefined; }, { type: "@w3m-app/SET_PREFERRED_ACCOUNT"; payload: { type: string; }; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-app/RPC_REQUEST">; payload: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{ method: z.ZodLiteral<"personal_sign">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "personal_sign"; }, { params: any[]; method: "personal_sign"; }>, z.ZodObject<{ method: z.ZodLiteral<"eth_sendTransaction">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_sendTransaction"; }, { params: any[]; method: "eth_sendTransaction"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_accounts">; }, "strip", z.ZodTypeAny, { method: "eth_accounts"; }, { method: "eth_accounts"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_blockNumber">; }, "strip", z.ZodTypeAny, { method: "eth_blockNumber"; }, { method: "eth_blockNumber"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_call">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_call"; }, { params: any[]; method: "eth_call"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_chainId">; }, "strip", z.ZodTypeAny, { method: "eth_chainId"; }, { method: "eth_chainId"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_estimateGas">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_estimateGas"; }, { params: any[]; method: "eth_estimateGas"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_feeHistory">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_feeHistory"; }, { params: any[]; method: "eth_feeHistory"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_gasPrice">; }, "strip", z.ZodTypeAny, { method: "eth_gasPrice"; }, { method: "eth_gasPrice"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_getAccount">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getAccount"; }, { params: any[]; method: "eth_getAccount"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_getBalance">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getBalance"; }, { params: any[]; method: "eth_getBalance"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_getBlockByHash">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getBlockByHash"; }, { params: any[]; method: "eth_getBlockByHash"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_getBlockByNumber">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getBlockByNumber"; }, { params: any[]; method: "eth_getBlockByNumber"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_getBlockReceipts">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getBlockReceipts"; }, { params: any[]; method: "eth_getBlockReceipts"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_getBlockTransactionCountByHash">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getBlockTransactionCountByHash"; }, { params: any[]; method: "eth_getBlockTransactionCountByHash"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_getBlockTransactionCountByNumber">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getBlockTransactionCountByNumber"; }, { params: any[]; method: "eth_getBlockTransactionCountByNumber"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_getCode">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getCode"; }, { params: any[]; method: "eth_getCode"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_getFilterChanges">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getFilterChanges"; }, { params: any[]; method: "eth_getFilterChanges"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_getFilterLogs">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getFilterLogs"; }, { params: any[]; method: "eth_getFilterLogs"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_getLogs">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getLogs"; }, { params: any[]; method: "eth_getLogs"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_getProof">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getProof"; }, { params: any[]; method: "eth_getProof"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_getStorageAt">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getStorageAt"; }, { params: any[]; method: "eth_getStorageAt"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_getTransactionByBlockHashAndIndex">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getTransactionByBlockHashAndIndex"; }, { params: any[]; method: "eth_getTransactionByBlockHashAndIndex"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_getTransactionByBlockNumberAndIndex">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getTransactionByBlockNumberAndIndex"; }, { params: any[]; method: "eth_getTransactionByBlockNumberAndIndex"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_getTransactionByHash">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getTransactionByHash"; }, { params: any[]; method: "eth_getTransactionByHash"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_getTransactionCount">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getTransactionCount"; }, { params: any[]; method: "eth_getTransactionCount"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_getTransactionReceipt">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getTransactionReceipt"; }, { params: any[]; method: "eth_getTransactionReceipt"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_getUncleCountByBlockHash">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getUncleCountByBlockHash"; }, { params: any[]; method: "eth_getUncleCountByBlockHash"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_getUncleCountByBlockNumber">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_getUncleCountByBlockNumber"; }, { params: any[]; method: "eth_getUncleCountByBlockNumber"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_maxPriorityFeePerGas">; }, "strip", z.ZodTypeAny, { method: "eth_maxPriorityFeePerGas"; }, { method: "eth_maxPriorityFeePerGas"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_newBlockFilter">; }, "strip", z.ZodTypeAny, { method: "eth_newBlockFilter"; }, { method: "eth_newBlockFilter"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_newFilter">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_newFilter"; }, { params: any[]; method: "eth_newFilter"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_newPendingTransactionFilter">; }, "strip", z.ZodTypeAny, { method: "eth_newPendingTransactionFilter"; }, { method: "eth_newPendingTransactionFilter"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_sendRawTransaction">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_sendRawTransaction"; }, { params: any[]; method: "eth_sendRawTransaction"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_syncing">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_syncing"; }, { params: any[]; method: "eth_syncing"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_uninstallFilter">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_uninstallFilter"; }, { params: any[]; method: "eth_uninstallFilter"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"personal_sign">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "personal_sign"; }, { params: any[]; method: "personal_sign"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_signTypedData_v4">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_signTypedData_v4"; }, { params: any[]; method: "eth_signTypedData_v4"; }>]>, z.ZodObject<{ method: z.ZodLiteral<"eth_sendTransaction">; params: z.ZodArray; }, "strip", z.ZodTypeAny, { params: any[]; method: "eth_sendTransaction"; }, { params: any[]; method: "eth_sendTransaction"; }>]>; }, "strip", z.ZodTypeAny, { type: "@w3m-app/RPC_REQUEST"; payload: { method: "eth_accounts"; } | { method: "eth_blockNumber"; } | { params: any[]; method: "eth_call"; } | { method: "eth_chainId"; } | { params: any[]; method: "eth_estimateGas"; } | { params: any[]; method: "eth_feeHistory"; } | { method: "eth_gasPrice"; } | { params: any[]; method: "eth_getAccount"; } | { params: any[]; method: "eth_getBalance"; } | { params: any[]; method: "eth_getBlockByHash"; } | { params: any[]; method: "eth_getBlockByNumber"; } | { params: any[]; method: "eth_getBlockReceipts"; } | { params: any[]; method: "eth_getBlockTransactionCountByHash"; } | { params: any[]; method: "eth_getBlockTransactionCountByNumber"; } | { params: any[]; method: "eth_getCode"; } | { params: any[]; method: "eth_getFilterChanges"; } | { params: any[]; method: "eth_getFilterLogs"; } | { params: any[]; method: "eth_getLogs"; } | { params: any[]; method: "eth_getProof"; } | { params: any[]; method: "eth_getStorageAt"; } | { params: any[]; method: "eth_getTransactionByBlockHashAndIndex"; } | { params: any[]; method: "eth_getTransactionByBlockNumberAndIndex"; } | { params: any[]; method: "eth_getTransactionByHash"; } | { params: any[]; method: "eth_getTransactionCount"; } | { params: any[]; method: "eth_getTransactionReceipt"; } | { params: any[]; method: "eth_getUncleCountByBlockHash"; } | { params: any[]; method: "eth_getUncleCountByBlockNumber"; } | { method: "eth_maxPriorityFeePerGas"; } | { method: "eth_newBlockFilter"; } | { params: any[]; method: "eth_newFilter"; } | { method: "eth_newPendingTransactionFilter"; } | { params: any[]; method: "eth_sendRawTransaction"; } | { params: any[]; method: "eth_syncing"; } | { params: any[]; method: "eth_uninstallFilter"; } | { params: any[]; method: "personal_sign"; } | { params: any[]; method: "eth_signTypedData_v4"; } | { params: any[]; method: "eth_sendTransaction"; }; id?: string | undefined; }, { type: "@w3m-app/RPC_REQUEST"; payload: { method: "eth_accounts"; } | { method: "eth_blockNumber"; } | { params: any[]; method: "eth_call"; } | { method: "eth_chainId"; } | { params: any[]; method: "eth_estimateGas"; } | { params: any[]; method: "eth_feeHistory"; } | { method: "eth_gasPrice"; } | { params: any[]; method: "eth_getAccount"; } | { params: any[]; method: "eth_getBalance"; } | { params: any[]; method: "eth_getBlockByHash"; } | { params: any[]; method: "eth_getBlockByNumber"; } | { params: any[]; method: "eth_getBlockReceipts"; } | { params: any[]; method: "eth_getBlockTransactionCountByHash"; } | { params: any[]; method: "eth_getBlockTransactionCountByNumber"; } | { params: any[]; method: "eth_getCode"; } | { params: any[]; method: "eth_getFilterChanges"; } | { params: any[]; method: "eth_getFilterLogs"; } | { params: any[]; method: "eth_getLogs"; } | { params: any[]; method: "eth_getProof"; } | { params: any[]; method: "eth_getStorageAt"; } | { params: any[]; method: "eth_getTransactionByBlockHashAndIndex"; } | { params: any[]; method: "eth_getTransactionByBlockNumberAndIndex"; } | { params: any[]; method: "eth_getTransactionByHash"; } | { params: any[]; method: "eth_getTransactionCount"; } | { params: any[]; method: "eth_getTransactionReceipt"; } | { params: any[]; method: "eth_getUncleCountByBlockHash"; } | { params: any[]; method: "eth_getUncleCountByBlockNumber"; } | { method: "eth_maxPriorityFeePerGas"; } | { method: "eth_newBlockFilter"; } | { params: any[]; method: "eth_newFilter"; } | { method: "eth_newPendingTransactionFilter"; } | { params: any[]; method: "eth_sendRawTransaction"; } | { params: any[]; method: "eth_syncing"; } | { params: any[]; method: "eth_uninstallFilter"; } | { params: any[]; method: "personal_sign"; } | { params: any[]; method: "eth_signTypedData_v4"; } | { params: any[]; method: "eth_sendTransaction"; }; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-app/UPDATE_EMAIL">; payload: z.ZodObject<{ email: z.ZodString; }, "strip", z.ZodTypeAny, { email: string; }, { email: string; }>; }, "strip", z.ZodTypeAny, { type: "@w3m-app/UPDATE_EMAIL"; payload: { email: string; }; id?: string | undefined; }, { type: "@w3m-app/UPDATE_EMAIL"; payload: { email: string; }; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-app/UPDATE_EMAIL_PRIMARY_OTP">; payload: z.ZodObject<{ otp: z.ZodString; }, "strip", z.ZodTypeAny, { otp: string; }, { otp: string; }>; }, "strip", z.ZodTypeAny, { type: "@w3m-app/UPDATE_EMAIL_PRIMARY_OTP"; payload: { otp: string; }; id?: string | undefined; }, { type: "@w3m-app/UPDATE_EMAIL_PRIMARY_OTP"; payload: { otp: string; }; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-app/UPDATE_EMAIL_SECONDARY_OTP">; payload: z.ZodObject<{ otp: z.ZodString; }, "strip", z.ZodTypeAny, { otp: string; }, { otp: string; }>; }, "strip", z.ZodTypeAny, { type: "@w3m-app/UPDATE_EMAIL_SECONDARY_OTP"; payload: { otp: string; }; id?: string | undefined; }, { type: "@w3m-app/UPDATE_EMAIL_SECONDARY_OTP"; payload: { otp: string; }; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-app/SYNC_THEME">; payload: z.ZodObject<{ themeMode: z.ZodOptional>; themeVariables: z.ZodOptional>>; w3mThemeVariables: z.ZodOptional>>; }, "strip", z.ZodTypeAny, { themeMode?: "light" | "dark" | undefined; themeVariables?: Record | undefined; w3mThemeVariables?: Record | undefined; }, { themeMode?: "light" | "dark" | undefined; themeVariables?: Record | undefined; w3mThemeVariables?: Record | undefined; }>; }, "strip", z.ZodTypeAny, { type: "@w3m-app/SYNC_THEME"; payload: { themeMode?: "light" | "dark" | undefined; themeVariables?: Record | undefined; w3mThemeVariables?: Record | undefined; }; id?: string | undefined; }, { type: "@w3m-app/SYNC_THEME"; payload: { themeMode?: "light" | "dark" | undefined; themeVariables?: Record | undefined; w3mThemeVariables?: Record | undefined; }; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-app/SYNC_DAPP_DATA">; payload: z.ZodObject<{ metadata: z.ZodOptional; }, "strip", z.ZodTypeAny, { name: string; description: string; url: string; icons: string[]; }, { name: string; description: string; url: string; icons: string[]; }>>; sdkVersion: z.ZodType<`react-native-wagmi-${string}` | `react-native-ethers5-${string}` | `react-native-ethers-${string}`, z.ZodTypeDef, `react-native-wagmi-${string}` | `react-native-ethers5-${string}` | `react-native-ethers-${string}`>; sdkType: z.ZodEnum<["appkit"]>; projectId: z.ZodString; }, "strip", z.ZodTypeAny, { sdkType: "appkit"; projectId: string; sdkVersion: (`react-native-wagmi-${string}` | `react-native-ethers5-${string}` | `react-native-ethers-${string}`) & (`react-native-wagmi-${string}` | `react-native-ethers5-${string}` | `react-native-ethers-${string}` | undefined); metadata?: { name: string; description: string; url: string; icons: string[]; } | undefined; }, { sdkType: "appkit"; projectId: string; sdkVersion: (`react-native-wagmi-${string}` | `react-native-ethers5-${string}` | `react-native-ethers-${string}`) & (`react-native-wagmi-${string}` | `react-native-ethers5-${string}` | `react-native-ethers-${string}` | undefined); metadata?: { name: string; description: string; url: string; icons: string[]; } | undefined; }>; }, "strip", z.ZodTypeAny, { type: "@w3m-app/SYNC_DAPP_DATA"; payload: { sdkType: "appkit"; projectId: string; sdkVersion: (`react-native-wagmi-${string}` | `react-native-ethers5-${string}` | `react-native-ethers-${string}`) & (`react-native-wagmi-${string}` | `react-native-ethers5-${string}` | `react-native-ethers-${string}` | undefined); metadata?: { name: string; description: string; url: string; icons: string[]; } | undefined; }; id?: string | undefined; }, { type: "@w3m-app/SYNC_DAPP_DATA"; payload: { sdkType: "appkit"; projectId: string; sdkVersion: (`react-native-wagmi-${string}` | `react-native-ethers5-${string}` | `react-native-ethers-${string}`) & (`react-native-wagmi-${string}` | `react-native-ethers5-${string}` | `react-native-ethers-${string}` | undefined); metadata?: { name: string; description: string; url: string; icons: string[]; } | undefined; }; id?: string | undefined; }>]>; frameEvent: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/SWITCH_NETWORK_ERROR">; payload: z.ZodObject<{ message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; }, { message: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/SWITCH_NETWORK_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/SWITCH_NETWORK_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/SWITCH_NETWORK_SUCCESS">; payload: z.ZodObject<{ chainId: z.ZodNumber; }, "strip", z.ZodTypeAny, { chainId: number; }, { chainId: number; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/SWITCH_NETWORK_SUCCESS"; payload: { chainId: number; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/SWITCH_NETWORK_SUCCESS"; payload: { chainId: number; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/CONNECT_EMAIL_ERROR">; payload: z.ZodObject<{ message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; }, { message: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/CONNECT_EMAIL_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/CONNECT_EMAIL_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/CONNECT_EMAIL_SUCCESS">; payload: z.ZodObject<{ action: z.ZodEnum<["VERIFY_DEVICE", "VERIFY_OTP"]>; }, "strip", z.ZodTypeAny, { action: "VERIFY_DEVICE" | "VERIFY_OTP"; }, { action: "VERIFY_DEVICE" | "VERIFY_OTP"; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/CONNECT_EMAIL_SUCCESS"; payload: { action: "VERIFY_DEVICE" | "VERIFY_OTP"; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/CONNECT_EMAIL_SUCCESS"; payload: { action: "VERIFY_DEVICE" | "VERIFY_OTP"; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/CONNECT_OTP_ERROR">; payload: z.ZodObject<{ message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; }, { message: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/CONNECT_OTP_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/CONNECT_OTP_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/CONNECT_OTP_SUCCESS">; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/CONNECT_OTP_SUCCESS"; origin: string; id?: string | undefined; }, { type: "@w3m-frame/CONNECT_OTP_SUCCESS"; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/CONNECT_DEVICE_ERROR">; payload: z.ZodObject<{ message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; }, { message: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/CONNECT_DEVICE_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/CONNECT_DEVICE_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/CONNECT_SOCIAL_SUCCESS">; payload: z.ZodObject<{ email: z.ZodString; address: z.ZodString; chainId: z.ZodUnion<[z.ZodString, z.ZodNumber]>; accounts: z.ZodOptional; }, "strip", z.ZodTypeAny, { type: "eoa" | "smartAccount"; address: string; }, { type: "eoa" | "smartAccount"; address: string; }>, "many">>; userName: z.ZodOptional; }, "strip", z.ZodTypeAny, { chainId: string | number; email: string; address: string; accounts?: { type: "eoa" | "smartAccount"; address: string; }[] | undefined; userName?: string | undefined; }, { chainId: string | number; email: string; address: string; accounts?: { type: "eoa" | "smartAccount"; address: string; }[] | undefined; userName?: string | undefined; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/CONNECT_SOCIAL_SUCCESS"; payload: { chainId: string | number; email: string; address: string; accounts?: { type: "eoa" | "smartAccount"; address: string; }[] | undefined; userName?: string | undefined; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/CONNECT_SOCIAL_SUCCESS"; payload: { chainId: string | number; email: string; address: string; accounts?: { type: "eoa" | "smartAccount"; address: string; }[] | undefined; userName?: string | undefined; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/CONNECT_SOCIAL_ERROR">; payload: z.ZodObject<{ message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; }, { message: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/CONNECT_SOCIAL_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/CONNECT_SOCIAL_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/GET_FARCASTER_URI_SUCCESS">; payload: z.ZodObject<{ url: z.ZodString; }, "strip", z.ZodTypeAny, { url: string; }, { url: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/GET_FARCASTER_URI_SUCCESS"; payload: { url: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/GET_FARCASTER_URI_SUCCESS"; payload: { url: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/GET_FARCASTER_URI_ERROR">; payload: z.ZodObject<{ message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; }, { message: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/GET_FARCASTER_URI_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/GET_FARCASTER_URI_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/CONNECT_FARCASTER_SUCCESS">; payload: z.ZodObject<{ userName: z.ZodString; }, "strip", z.ZodTypeAny, { userName: string; }, { userName: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/CONNECT_FARCASTER_SUCCESS"; payload: { userName: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/CONNECT_FARCASTER_SUCCESS"; payload: { userName: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/CONNECT_FARCASTER_ERROR">; payload: z.ZodObject<{ message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; }, { message: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/CONNECT_FARCASTER_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/CONNECT_FARCASTER_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/CONNECT_DEVICE_SUCCESS">; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/CONNECT_DEVICE_SUCCESS"; origin: string; id?: string | undefined; }, { type: "@w3m-frame/CONNECT_DEVICE_SUCCESS"; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/GET_USER_ERROR">; payload: z.ZodObject<{ message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; }, { message: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/GET_USER_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/GET_USER_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/GET_USER_SUCCESS">; payload: z.ZodObject<{ email: z.ZodNullable>; address: z.ZodString; chainId: z.ZodNumber; smartAccountDeployed: z.ZodBoolean; preferredAccountType: z.ZodEnum<["eoa", "smartAccount"]>; }, "strip", z.ZodTypeAny, { chainId: number; preferredAccountType: "eoa" | "smartAccount"; address: string; smartAccountDeployed: boolean; email?: string | null | undefined; }, { chainId: number; preferredAccountType: "eoa" | "smartAccount"; address: string; smartAccountDeployed: boolean; email?: string | null | undefined; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/GET_USER_SUCCESS"; payload: { chainId: number; preferredAccountType: "eoa" | "smartAccount"; address: string; smartAccountDeployed: boolean; email?: string | null | undefined; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/GET_USER_SUCCESS"; payload: { chainId: number; preferredAccountType: "eoa" | "smartAccount"; address: string; smartAccountDeployed: boolean; email?: string | null | undefined; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/GET_SOCIAL_REDIRECT_URI_ERROR">; payload: z.ZodObject<{ message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; }, { message: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/GET_SOCIAL_REDIRECT_URI_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/GET_SOCIAL_REDIRECT_URI_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/GET_SOCIAL_REDIRECT_URI_SUCCESS">; payload: z.ZodObject<{ uri: z.ZodString; }, "strip", z.ZodTypeAny, { uri: string; }, { uri: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/GET_SOCIAL_REDIRECT_URI_SUCCESS"; payload: { uri: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/GET_SOCIAL_REDIRECT_URI_SUCCESS"; payload: { uri: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/SIGN_OUT_ERROR">; payload: z.ZodObject<{ message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; }, { message: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/SIGN_OUT_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/SIGN_OUT_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/SIGN_OUT_SUCCESS">; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/SIGN_OUT_SUCCESS"; origin: string; id?: string | undefined; }, { type: "@w3m-frame/SIGN_OUT_SUCCESS"; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/IS_CONNECTED_ERROR">; payload: z.ZodObject<{ message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; }, { message: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/IS_CONNECTED_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/IS_CONNECTED_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/IS_CONNECTED_SUCCESS">; payload: z.ZodObject<{ isConnected: z.ZodBoolean; }, "strip", z.ZodTypeAny, { isConnected: boolean; }, { isConnected: boolean; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/IS_CONNECTED_SUCCESS"; payload: { isConnected: boolean; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/IS_CONNECTED_SUCCESS"; payload: { isConnected: boolean; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/GET_CHAIN_ID_ERROR">; payload: z.ZodObject<{ message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; }, { message: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/GET_CHAIN_ID_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/GET_CHAIN_ID_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/GET_CHAIN_ID_SUCCESS">; payload: z.ZodObject<{ chainId: z.ZodNumber; }, "strip", z.ZodTypeAny, { chainId: number; }, { chainId: number; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/GET_CHAIN_ID_SUCCESS"; payload: { chainId: number; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/GET_CHAIN_ID_SUCCESS"; payload: { chainId: number; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/RPC_REQUEST_ERROR">; payload: z.ZodObject<{ message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; }, { message: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/RPC_REQUEST_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/RPC_REQUEST_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/RPC_REQUEST_SUCCESS">; payload: z.ZodAny; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/RPC_REQUEST_SUCCESS"; origin: string; id?: string | undefined; payload?: any; }, { type: "@w3m-frame/RPC_REQUEST_SUCCESS"; origin: string; id?: string | undefined; payload?: any; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/SESSION_UPDATE">; payload: z.ZodObject<{ token: z.ZodString; }, "strip", z.ZodTypeAny, { token: string; }, { token: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/SESSION_UPDATE"; payload: { token: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/SESSION_UPDATE"; payload: { token: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/UPDATE_EMAIL_ERROR">; payload: z.ZodObject<{ message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; }, { message: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/UPDATE_EMAIL_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/UPDATE_EMAIL_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/UPDATE_EMAIL_SUCCESS">; payload: z.ZodObject<{ action: z.ZodEnum<["VERIFY_PRIMARY_OTP", "VERIFY_SECONDARY_OTP"]>; }, "strip", z.ZodTypeAny, { action: "VERIFY_PRIMARY_OTP" | "VERIFY_SECONDARY_OTP"; }, { action: "VERIFY_PRIMARY_OTP" | "VERIFY_SECONDARY_OTP"; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/UPDATE_EMAIL_SUCCESS"; payload: { action: "VERIFY_PRIMARY_OTP" | "VERIFY_SECONDARY_OTP"; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/UPDATE_EMAIL_SUCCESS"; payload: { action: "VERIFY_PRIMARY_OTP" | "VERIFY_SECONDARY_OTP"; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/UPDATE_EMAIL_PRIMARY_OTP_ERROR">; payload: z.ZodObject<{ message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; }, { message: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/UPDATE_EMAIL_PRIMARY_OTP_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/UPDATE_EMAIL_PRIMARY_OTP_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/UPDATE_EMAIL_PRIMARY_OTP_SUCCESS">; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/UPDATE_EMAIL_PRIMARY_OTP_SUCCESS"; origin: string; id?: string | undefined; }, { type: "@w3m-frame/UPDATE_EMAIL_PRIMARY_OTP_SUCCESS"; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/UPDATE_EMAIL_SECONDARY_OTP_ERROR">; payload: z.ZodObject<{ message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; }, { message: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/UPDATE_EMAIL_SECONDARY_OTP_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/UPDATE_EMAIL_SECONDARY_OTP_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/UPDATE_EMAIL_SECONDARY_OTP_SUCCESS">; payload: z.ZodObject<{ newEmail: z.ZodString; }, "strip", z.ZodTypeAny, { newEmail: string; }, { newEmail: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/UPDATE_EMAIL_SECONDARY_OTP_SUCCESS"; payload: { newEmail: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/UPDATE_EMAIL_SECONDARY_OTP_SUCCESS"; payload: { newEmail: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/SYNC_THEME_ERROR">; payload: z.ZodObject<{ message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; }, { message: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/SYNC_THEME_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/SYNC_THEME_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/SYNC_THEME_SUCCESS">; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/SYNC_THEME_SUCCESS"; origin: string; id?: string | undefined; }, { type: "@w3m-frame/SYNC_THEME_SUCCESS"; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/SYNC_DAPP_DATA_ERROR">; payload: z.ZodObject<{ message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; }, { message: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/SYNC_DAPP_DATA_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/SYNC_DAPP_DATA_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/SYNC_DAPP_DATA_SUCCESS">; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/SYNC_DAPP_DATA_SUCCESS"; origin: string; id?: string | undefined; }, { type: "@w3m-frame/SYNC_DAPP_DATA_SUCCESS"; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/GET_SMART_ACCOUNT_ENABLED_NETWORKS_SUCCESS">; payload: z.ZodObject<{ smartAccountEnabledNetworks: z.ZodArray; }, "strip", z.ZodTypeAny, { smartAccountEnabledNetworks: number[]; }, { smartAccountEnabledNetworks: number[]; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/GET_SMART_ACCOUNT_ENABLED_NETWORKS_SUCCESS"; payload: { smartAccountEnabledNetworks: number[]; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/GET_SMART_ACCOUNT_ENABLED_NETWORKS_SUCCESS"; payload: { smartAccountEnabledNetworks: number[]; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/GET_SMART_ACCOUNT_ENABLED_NETWORKS_ERROR">; payload: z.ZodObject<{ message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; }, { message: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/GET_SMART_ACCOUNT_ENABLED_NETWORKS_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/GET_SMART_ACCOUNT_ENABLED_NETWORKS_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/SET_PREFERRED_ACCOUNT_SUCCESS">; payload: z.ZodObject<{ type: z.ZodEnum<["eoa", "smartAccount"]>; address: z.ZodString; }, "strip", z.ZodTypeAny, { type: "eoa" | "smartAccount"; address: string; }, { type: "eoa" | "smartAccount"; address: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/SET_PREFERRED_ACCOUNT_SUCCESS"; payload: { type: "eoa" | "smartAccount"; address: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/SET_PREFERRED_ACCOUNT_SUCCESS"; payload: { type: "eoa" | "smartAccount"; address: string; }; origin: string; id?: string | undefined; }>]>, z.ZodObject<{ id: z.ZodOptional; type: z.ZodLiteral<"@w3m-frame/SET_PREFERRED_ACCOUNT_ERROR">; payload: z.ZodObject<{ message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; }, { message: string; }>; origin: z.ZodString; }, "strip", z.ZodTypeAny, { type: "@w3m-frame/SET_PREFERRED_ACCOUNT_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }, { type: "@w3m-frame/SET_PREFERRED_ACCOUNT_ERROR"; payload: { message: string; }; origin: string; id?: string | undefined; }>]>; }; //# sourceMappingURL=AppKitFrameSchema.d.ts.map