/// import { VideoboxCache } from './cache'; import { Videobox } from './core'; export declare class VideoboxContent { readonly core: Videobox; readonly cache: VideoboxCache; constructor(core: Videobox, cache?: VideoboxCache); thumbnail(path: string): Promise; embed(path: string, color?: string): Promise; private cahched(key, resolver); }