import { Observable } from 'rxjs'; import { ApiGatewayService } from '../../api-client/api-gateway.service'; import { CacheService } from '../../cache.service'; import { IFndyUserSecret } from './fndy-secret/fndy-user-secret.model'; import { IFndyUser } from './fndy-user.model'; import * as i0 from "@angular/core"; export declare class FndyUserService { private apiGatewayService; private cacheService; constructor(apiGatewayService: ApiGatewayService, cacheService: CacheService); getUsers(accountId: string, oneLevel?: boolean): Observable; exportUsers(): Observable; getUser(userId: string, withObjects?: boolean): Observable; updateUser(user: IFndyUser): Observable; createUser(user: IFndyUser): Observable; deleteUser(userId: string): Observable; resendActivationEmail(username: string, rootAccount: string): Observable; getSecrets(userId: string): Observable; createSecret(userId: string): Observable; deleteSecret(apiKeyId: string): Observable; updateSecret(secret: IFndyUserSecret): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }