import { AxiosResponse } from 'axios'; type ReLogin = { jwt: string; }; declare const AuthAPIs: { reLogin: (body: ReLogin) => Promise; }; export default AuthAPIs;