import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetGlobalCollectionStatisticsRequest = { /** * Collection ID */ id: string; }; /** @internal */ export declare const GetGlobalCollectionStatisticsRequest$inboundSchema: z.ZodType; /** @internal */ export type GetGlobalCollectionStatisticsRequest$Outbound = { id: string; }; /** @internal */ export declare const GetGlobalCollectionStatisticsRequest$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 GetGlobalCollectionStatisticsRequest$ { /** @deprecated use `GetGlobalCollectionStatisticsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetGlobalCollectionStatisticsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetGlobalCollectionStatisticsRequest$Outbound` instead. */ type Outbound = GetGlobalCollectionStatisticsRequest$Outbound; } export declare function getGlobalCollectionStatisticsRequestToJSON(getGlobalCollectionStatisticsRequest: GetGlobalCollectionStatisticsRequest): string; export declare function getGlobalCollectionStatisticsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getglobalcollectionstatistics.d.ts.map