import { GlobalProps } from '../../shared/global'; import type { ComponentChildren } from '../../shared/children'; export interface ImageGroupProps extends GlobalProps { /** * The content of the ImageGroup. */ children?: ComponentChildren; /** * Indicates the total number of items that could be displayed in the image group. * It is used to determine the remaining number to show when all the available image slots have been filled. */ totalItems?: number; }