export declare const useGallery: () => { getList: () => Promise; list: { [key: string]: { media: import("../..").IPicture; id: string; }[]; }; listLoading: boolean; listError: import("../../../store").IPayloadError; addItem: (file: File, categoryUri: string) => Promise; addError: import("../../../store").IPayloadError; addLoading: boolean; deleteLoading: boolean; deleteError: import("../../../store").IPayloadError; deleteItem: (itemId: string, categoryName: string) => Promise; uploadProgress: number; };