import IGalleryItem from "./IGalleryItem";
export default interface IGallery {
    items: IGalleryItem[];
}
