import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { ApiVisa, PagingResponseModel } from './../../shared'; import { YoutubeContainerModel } from './youtube-container.model'; export declare class YoutubeService { protected readonly http: HttpClient; protected readonly endpoint_path: string; constructor(http: HttpClient); getYtubeVideo(countryId: string, visa: ApiVisa): Observable>; }