/** * Function that handles the app's login * @param credentials {email, password} of the user * @returns an array with the users Token and RefreshToken */ export declare const login: (apiKey: string, credentials: Record) => Promise; /** * Function that indicates to the server to delete the refresh token */ export declare const logout: (apiKey: string) => Promise;