import { Observable } from 'rxjs/Observable';
import { EventSource } from './eventSource';
export interface Faq {
    answer?: string;
    category: string;
    default: boolean;
    faqId: string;
    key: string;
    question: string;
    sortKey?: number;
}
import { Photo } from './interfaces';
export declare class EventFaq {
    private es;
    constructor(eventSource: EventSource);
    observeFaqNote(): Observable<string>;
    observeFaqs(): Observable<any[]>;
    observePrimaryFaqPhoto(): Observable<Photo>;
    observePrimaryFaqPhotoHorizontal(): Observable<Photo>;
}
