export declare const useGetAccountInfo: () => { address: string; account: import("../../types/account.types").AccountType; publicKey: string; ledgerAccount: import("../../store/slices/account/account.types").LedgerAccountType | null; walletConnectAccount: string | null; websocketEvent: { timestamp: number; message: string; } | null; websocketBatchEvent: { timestamp: number; data: import("../../types/websocket.types").BatchTransactionsWSResponseType; } | null; };