import { ShareService } from '../ui/gallery/share.service'; import { MediaDTO } from '../../../common/entities/MediaDTO'; import { ParentDirectoryDTO, SubDirectoryDTO } from '../../../common/entities/DirectoryDTO'; import { ContentLoaderService } from '../ui/gallery/contentLoader.service'; export declare class QueryService { private shareService; private galleryService; constructor(shareService: ShareService, galleryService: ContentLoaderService); getMediaStringId(media: MediaDTO): string; getParams(lightbox?: { media?: MediaDTO; map?: boolean; }): { [key: string]: string; }; getParamsForDirs(directory: ParentDirectoryDTO | SubDirectoryDTO): { [key: string]: any; }; }