import { IPlaceholderItemData, IImageItemData } from "@aurigma/design-atoms/Services/ItemsDataApplierInterfaces"; /** * A structure defining the default parameters of gallery tabs. * @public */ export interface IGalleryItemConfig extends IImageItemData, IPlaceholderItemData { } /** * A structure defining the default parameters of the image gallery. * @public */ export interface IGalleryDefaultConfig { [tabName: string]: IGalleryItemConfig; }