import { Observable } from 'rxjs'; import { HttpClient } from '@angular/common/http'; import { PytApisConfig } from "./pyt-apis.module"; import * as i0 from "@angular/core"; export declare class FriendsService { private http; private config; constructor(http: HttpClient, config: PytApisConfig); isPublicProfile(): Observable; changeToPublicProfile(): Observable; changeToPrivateProfile(): Observable; getFriends(): Observable; connectWithPublicKey(publicKey: string): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } export declare enum Freundschaftsstatus { ANFRAGE = "ANFRAGE", BEFREUNDET = "BEFREUNDET" } export interface Friend { freundId: number; anwenderId: string; benutzername: string; freundschaftsstatus: Freundschaftsstatus; } export interface UserPublic { publicProfile: boolean; publicKey: string; }