import { Observable } from 'rxjs/Observable';
import { EventSource } from './eventSource';
import { Photo } from './interfaces';
export interface Vip {
    name: string;
    title: string;
    email?: string;
    info?: string;
    avatar: Photo;
}
export declare class EventVip {
    private es;
    constructor(eventSource: EventSource);
    observeVips(): Observable<Array<Vip>>;
    observePrimaryFaqPhoto(): Observable<Photo>;
    observePrimaryFaqPhotoHorizontal(): Observable<Photo>;
}
