export * from './basic'; export interface VideoboxEncoder { encodePlayer(type: string, id: string): Promise; decodePlayer(path: string): Promise<{ type: string; id: string; }>; encodeThumbnail(type: string, id: string, width: number, height: number, removeBorder: boolean): Promise; decodeThumbnail(path: string): Promise<{ type: string; id: string; width: number; height: number; removeBorder: boolean; }>; }