export type CloudinaryResourceType = 'image' | 'video' | 'audio' | 'raw'; export type CloudinaryAccessMode = 'public' | 'authenticated' | 'private'; export type CloudinaryDeliveryType = 'upload' | 'private' | 'authenticated'; export type CloudinaryTransformationCrop = 'scale' | 'fit' | 'limit' | 'mfit' | 'fill' | 'lfill' | 'pad' | 'lpad' | 'mpad' | 'crop' | 'thumb' | 'imagga_crop' | 'imagga_scale'; export type CloudinaryTransformationGravity = 'north_west' | 'north' | 'north_east' | 'west' | 'center' | 'east' | 'south_west' | 'south' | 'south_east' | 'xy_center' | 'face' | 'faces' | 'body' | 'adv_face' | 'adv_faces' | 'adv_eyes' | 'adv_ear' | 'adv_nose' | 'adv_mouth' | 'adv_legs' | 'adv_arms' | 'auto' | 'auto:adv_face' | 'auto:adv_faces' | 'auto:adv_eyes' | 'auto:adv_ear' | 'auto:adv_nose' | 'auto:adv_mouth' | 'auto:adv_legs' | 'auto:adv_arms';