///
import * as url from 'url';
import { Videobox } from '../core';
import { Adapter, AdapterOptions } from './base';
export declare class YouTube extends Adapter {
static load(videobox: Videobox, type: string, id: string): false | YouTube;
static parse(videobox: Videobox, videoUrl: url.UrlWithParsedQuery, title?: string, start?: number, end?: number): false | YouTube;
getThumbnailBaseUrl(): Promise;
getPlayerUrl(): Promise;
}