import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { QueryOptions, IdentityService } from '@bsynchro/common'; import * as i0 from "@angular/core"; export declare class ContactsService { httpClient: HttpClient; private _environment; private _identityService; constructor(httpClient: HttpClient, _environment: any, _identityService: IdentityService); getContactById(contactId: string): Observable; getContacts(qo: QueryOptions): Observable; addContact(contact: any): Observable; updateContactBasicInfo(contactPayload: any, extendedPropertiesToUpsert?: string[]): Observable; updateContact(contact: any): Observable; saveContactReferrals(payload: Array): Observable; isValidContact(contact: any): boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }