import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import * as models from "../index.js"; export type GetCollectionStatsRequest = { /** * Identifier of collection */ collection: string; /** * Currency of statistics */ currency?: models.OlapCurrencyType | undefined; }; /** @internal */ export declare const GetCollectionStatsRequest$inboundSchema: z.ZodType; /** @internal */ export type GetCollectionStatsRequest$Outbound = { collection: string; currency: string; }; /** @internal */ export declare const GetCollectionStatsRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetCollectionStatsRequest$ { /** @deprecated use `GetCollectionStatsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetCollectionStatsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetCollectionStatsRequest$Outbound` instead. */ type Outbound = GetCollectionStatsRequest$Outbound; } export declare function getCollectionStatsRequestToJSON(getCollectionStatsRequest: GetCollectionStatsRequest): string; export declare function getCollectionStatsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getcollectionstats.d.ts.map