import { RestService } from '@abp/ng.core'; import { Observable } from 'rxjs'; import { AccountSettings } from '../models/account-settings'; export declare class AccountConfigService { private restService; apiName: string; constructor(restService: RestService); getSettings(): Observable; updateSettings(body: AccountSettings): Observable; }