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