import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { OlapCollectionLeaderboardEntry, OlapCollectionLeaderboardEntry$Outbound } from "./olapcollectionleaderboardentry.js"; export type OlapCollectionVolumeRankingResponse = { continuation?: string | undefined; result?: Array | undefined; }; /** @internal */ export declare const OlapCollectionVolumeRankingResponse$inboundSchema: z.ZodType; /** @internal */ export type OlapCollectionVolumeRankingResponse$Outbound = { continuation?: string | undefined; result?: Array | undefined; }; /** @internal */ export declare const OlapCollectionVolumeRankingResponse$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 OlapCollectionVolumeRankingResponse$ { /** @deprecated use `OlapCollectionVolumeRankingResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `OlapCollectionVolumeRankingResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `OlapCollectionVolumeRankingResponse$Outbound` instead. */ type Outbound = OlapCollectionVolumeRankingResponse$Outbound; } export declare function olapCollectionVolumeRankingResponseToJSON(olapCollectionVolumeRankingResponse: OlapCollectionVolumeRankingResponse): string; export declare function olapCollectionVolumeRankingResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=olapcollectionvolumerankingresponse.d.ts.map