import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { AutoTablePageableResponse } from '@muchencute/mrrs-types'; import { Customer, CustomerStatus } from './customer-models'; export declare class CustomerService { private httpClient; private coreConfig; private _baseURL; constructor(httpClient: HttpClient, coreConfig: any); getCustomerList(params: { [param: string]: any; }): Observable>; getCustomer(username: string): Observable; newCustomer(customer: Customer): Observable; updateCustomer(customer: Customer): Observable; removeCustomer(username: string | string[]): Observable; updateCustomerStatus(username: string | string[], status: CustomerStatus): Observable; resetPassword(username: string): Observable; }