import { StoreType } from '../../store/store.types'; export declare const accountSelector: ({ account }: StoreType) => import("../../types/account.types").AccountType; export declare const accountInfoSelector: (state: StoreType) => { address: string; account: import("../../types/account.types").AccountType; publicKey: string; ledgerAccount: import("../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; }; export declare const addressSelector: ({ account: { address } }: StoreType) => string; export declare const websocketEventSelector: ({ account: { websocketEvent } }: StoreType) => { timestamp: number; message: string; } | null; export declare const accountNonceSelector: (store: StoreType) => number; export declare const isLoggedInSelector: (store: StoreType) => boolean; export declare const ledgerAccountSelector: ({ account: { ledgerAccount } }: StoreType) => import("../slices/account/account.types").LedgerAccountType | null;