import { ProviderType } from '../../../providers/types/providerFactory.types'; export declare const logoutAction: () => void; export interface LoginActionPayloadType { address: string; providerType: T; } export declare const loginAction: ({ address, providerType }: LoginActionPayloadType) => void;