import { OnInit } from '@angular/core';
import { Observable } from 'rxjs';
import { Presence } from '../../core/presence';
import { Recipient } from '../../core/recipient';
import { ChatService } from '../../services/chat-service';
export declare class RosterRecipientComponent implements OnInit {
    private chatService;
    recipient: Recipient;
    unreadCount$: Observable<number>;
    presence$: Observable<Presence> | null;
    Presence: typeof Presence;
    constructor(chatService: ChatService);
    ngOnInit(): void;
}
