import * as axios from 'axios'; import { I as IProfile } from '../user.entities-89r-QDXP.js'; interface ILogin { email: string; password: string; } interface IAuthTokenResponse { token: string; } interface IAuthCheckResponse { message: string; } declare function fetchCheck(): Promise>; declare function fetchLogin({ email, password }: ILogin): Promise>; declare function fetchProfile(): Promise>; export { type IAuthCheckResponse, type IAuthTokenResponse, type ILogin, fetchCheck, fetchLogin, fetchProfile };