import { AxiosError } from 'axios'; export declare const setLoggedUserData: (data: IProfileData) => { id: string | number; first_name: string; last_name: string; email: string; confirmEmail: string; city: string; country: string | number; phone: string; street_address: string; state: string | number; zip: string | number; }; interface LogoutUserParams { onLogoutSuccess?: () => void; onLogoutError?: (error: AxiosError) => void; setIsLogged?: (isLogged: boolean) => void; } export declare const logoutUser: ({ onLogoutSuccess, onLogoutError, setIsLogged, }: LogoutUserParams) => Promise; export {};