import type { LogoutReason } from '@dynamic-labs-sdk/client'; export type HandleWalletInfoOutOfSyncParams = { logout: (reason: string, params: any, logoutReason?: LogoutReason) => Promise; }; /** * Detects mismatch between wallet info. * If there is primary wallet id, but no user or connected wallets info, * it means it's in a bad state and we should log out. */ export declare const handleWalletInfoOutOfSync: ({ logout, }: HandleWalletInfoOutOfSyncParams) => Promise;