import { VideoboxEncoder } from '.'; export declare class BasicEncoder implements 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; }>; }