import { ToasterService } from '@abp/ng.theme.shared'; import { OnInit } from '@angular/core'; import { AccountSettings } from '../../models/account-settings'; import { AccountConfigService } from '../../services/account-config.service'; export declare class AccountSettingsComponent implements OnInit { private accountConfigService; private toaster; settings: AccountSettings; loading: boolean; readonly initialized: boolean; constructor(accountConfigService: AccountConfigService, toaster: ToasterService); ngOnInit(): void; submit(): void; }