import { RestaurantService } from './restaurant.service'; import { ApiService } from './api.service'; import { Session } from '../restaurant-manager.models'; import { Observable } from 'rxjs'; export declare class SessionService { protected apiService: ApiService; protected restaurantService: RestaurantService; constructor(apiService: ApiService, restaurantService: RestaurantService); getLastSessionHashes(): Observable; openSession(restaurantId: string): Observable; closeSession(restaurantId: string, data: any): Observable; getSessionHash(sessionId: string): Observable; getOpenedSession(restaurantId: string): Observable; }