import { AuthResponse } from '../../types'; export interface Credentials { email: string; password: string; } export interface LoginResponse { accessToken: string; message?: string; } export declare const loginWithCredentials: (url: string, credentials: Credentials) => Promise;