export declare function listScreenshotSets(localizationId: string): Promise; export declare function uploadScreenshot(localizationId: string, displayType: string, filePath: string): Promise<{ id: string; fileName: string; fileSize: number; displayType: string; }>; export declare function deleteScreenshot(screenshotId: string): Promise<{ ok: boolean; id: string; }>; export declare function deleteScreenshotSet(setId: string): Promise<{ ok: boolean; id: string; }>;