export declare const LINK_INFO_MESSAGE_TYPE = "imx-link-info"; export declare enum ImxLinkInfoEventType { WALLET_CONNECTION = "wallet-connection" } export declare type InfoEvent = { type: ImxLinkInfoEventType; payload?: T; }; export interface WalletConnectionInfoEvent { walletAddress: string; starkPublicKey: string; providerPreference: string; email: string; ethNetwork: string; }