export declare function accountChanged(prevAccount: any, newAccount: any): boolean;
export declare function newCurrentAccount(prevProps: any, newProps: any): boolean;
interface AccountUtils {
    accountChanged: (prevAccount: any, newAccount: any) => boolean;
    newCurrentAccount: (prevProps: any, newProps: any) => boolean;
}
declare const ACCOUNT_UTILS: AccountUtils;
export default ACCOUNT_UTILS;
