import { UserInfo } from "../interfaces/interface";
export declare const useGetUserLatest: (token: string, userInfo: UserInfo, userId: string, baseUrl: string, lang?: string) => {
    GetLatestByUserId: () => Promise<{
        response: import("axios").AxiosResponse<any, any>;
        newUser: {};
        message: any;
        status: string;
    } | {
        response: any;
        newUser: any;
        message: any;
        status: string;
    }>;
};
