import { HttpClient } from '@angular/common/http';
import { Contact } from '../core/contact';
import { LogService } from './log.service';
export declare class ContactFactoryService {
    private logService;
    private httpClient;
    constructor(logService: LogService, httpClient: HttpClient);
    createContact(jidPlain: string, name?: string, avatar?: string): Contact;
}
