import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetCollectionStatisticsRequest = { /** * Identifier of collection */ collection: string; }; /** @internal */ export declare const GetCollectionStatisticsRequest$inboundSchema: z.ZodType; /** @internal */ export type GetCollectionStatisticsRequest$Outbound = { collection: string; }; /** @internal */ export declare const GetCollectionStatisticsRequest$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 GetCollectionStatisticsRequest$ { /** @deprecated use `GetCollectionStatisticsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetCollectionStatisticsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetCollectionStatisticsRequest$Outbound` instead. */ type Outbound = GetCollectionStatisticsRequest$Outbound; } export declare function getCollectionStatisticsRequestToJSON(getCollectionStatisticsRequest: GetCollectionStatisticsRequest): string; export declare function getCollectionStatisticsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getcollectionstatistics.d.ts.map