import { AuthResponse } from '../interfaces/auth.interface'; declare class AuthService { private readonly API_URL; private token; loginWithEmail(email: string): Promise; loginWithGoogle(token: string): Promise; private setToken; getToken(): string | null; logout(): void; isAuthenticated(): boolean; } export declare const authService: AuthService; export {};