import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as models from "../models/index.js"; import * as operations from "../models/operations/index.js"; export declare class CollectionStatistics extends ClientSDK { /** * Get global (period-independent) statistics by collection ID * * @remarks * Global collection statistics by ID */ getGlobalCollectionStatistics(request: operations.GetGlobalCollectionStatisticsRequest, options?: RequestOptions): Promise; /** * Get global (period-independent) statistics by collection IDs * * @remarks * Global collection statistics by IDs */ getGlobalCollectionStatisticsByIds(request: Array, options?: RequestOptions): Promise>; /** * Get period-based statistics by collection ID * * @remarks * Period-based collection statistics by ID */ getPeriodCollectionStatistics(request: operations.GetPeriodCollectionStatisticsRequest, options?: RequestOptions): Promise; /** * Get period-based statistics by collection IDs * * @remarks * Period-based collection statistics by IDs */ getPeriodCollectionStatisticsByIds(request: models.OlapPeriodCollectionsByIdsStatisticsRequest, options?: RequestOptions): Promise>; /** * Get distribution of the number of owned items by owner * * @remarks * Returns list of owners of items in the collection along with the number of owned items */ getOwners(request: operations.GetOwnersRequest, options?: RequestOptions): Promise; /** * Get distribution of the number of bids by price * * @remarks * Returns list of bid prices with number of bids and bidders */ getBidsByPrice(request: operations.GetBidsByPriceRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=collectionstatistics.d.ts.map