/** * ImageFormat represents the set of image formats that media * can be converted into using Dynamic Imaging. */ export declare enum ImageFormat { /** * JPEG (jpg) image format. */ JPEG = "jpg", /** * Portable Network Graphics (png) image format. */ PNG = "png", /** * Graphics Interchange Format (gif) image format. */ GIF = "gif", /** * WebP (webp) image format. */ WEBP = "webp", /** * Bitmap (bmp) image format. */ BITMAP = "bmp" }