import { Observable } from "rxjs"; import { NsEmpWebExpData } from "../models/emp-web-exp.model"; import { ApiService } from "./api.service"; interface IPreferenceRequest { startTime: string; officeGuid: string; bookingType?: string; buid?: string; empguid?: string; } export declare class PreferenceDataService { private apiService; todayPreferences: Observable; otherDayPreference: Observable; constructor(apiService: ApiService); refreshReplayStreams(args?: IPreferenceRequest): void; } export {};