import type { VariationAttribute } from './VariationAttribute'; import type { Image } from './Image'; /** * @type ImageGroup: Document representing an image group containing a list of images for a particular view type and an optional variation value. * * @property images: The images of the image group. * * @property variationAttributes: Returns a list of variation attributes applying to this image group. * * @property viewType: The image view type. * - **Min Length:** 1 * - **Max Length:** 256 * */ export type ImageGroup = { images: Array; variationAttributes?: Array; viewType: string; } & { [key: string]: any; };