import { type RequestOptions } from '../lib/api.client.js'; export interface GesDiscCollection { services: { subset?: Array<{ dimensions?: Array<{ value: string; label: string; }>; }>; }; } declare class GesDiscApi { #private; getCollectionByEntryId(collectionEntryId?: string, options?: RequestOptions): Promise; } declare const gesDiscApi: GesDiscApi; export default gesDiscApi;