import { IPicture } from 'gallery'; export declare class GalleryApi { static getGallery: () => Promise>; static deleteGalleryItem: (itemId: string) => Promise>; static addGalleryItem: (pictureWithCategory: { media: IPicture; id: string; categoryUri: string; }) => Promise>; }