import type { ChainType } from '@lifi/sdk';
export declare enum WalletManagementEvent {
    WalletConnected = "walletConnected"
}
export type WalletManagementEvents = {
    walletConnected: WalletConnected;
};
export interface WalletConnected {
    address: string;
    chainId: number;
    chainType: ChainType;
    connectorId: string;
    connectorName: string;
}
