import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const GetApiV3SubnetReplicaVersionsIncludeStatus: { readonly Executed: "EXECUTED"; readonly Open: "OPEN"; readonly Adopted: "ADOPTED"; }; export type GetApiV3SubnetReplicaVersionsIncludeStatus = ClosedEnum; export declare const GetApiV3SubnetReplicaVersionsFormat: { readonly Json: "json"; readonly Csv: "csv"; }; export type GetApiV3SubnetReplicaVersionsFormat = ClosedEnum; export type GetApiV3SubnetReplicaVersionsRequest = { /** * Start Timestamp */ start?: number | null | undefined; limit?: number | undefined; maxProposalIndex?: number | null | undefined; includeStatus?: Array | undefined; offset?: number | undefined; /** * Available values : proposal_id, executed_timestamp_seconds */ sortBy?: any | undefined; /** * End Timestamp */ end?: number | null | undefined; format?: GetApiV3SubnetReplicaVersionsFormat | undefined; }; /** @internal */ export declare const GetApiV3SubnetReplicaVersionsIncludeStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3SubnetReplicaVersionsIncludeStatus$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetApiV3SubnetReplicaVersionsIncludeStatus$ { /** @deprecated use `GetApiV3SubnetReplicaVersionsIncludeStatus$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Executed: "EXECUTED"; readonly Open: "OPEN"; readonly Adopted: "ADOPTED"; }>; /** @deprecated use `GetApiV3SubnetReplicaVersionsIncludeStatus$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Executed: "EXECUTED"; readonly Open: "OPEN"; readonly Adopted: "ADOPTED"; }>; } /** @internal */ export declare const GetApiV3SubnetReplicaVersionsFormat$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3SubnetReplicaVersionsFormat$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetApiV3SubnetReplicaVersionsFormat$ { /** @deprecated use `GetApiV3SubnetReplicaVersionsFormat$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; /** @deprecated use `GetApiV3SubnetReplicaVersionsFormat$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; } /** @internal */ export declare const GetApiV3SubnetReplicaVersionsRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3SubnetReplicaVersionsRequest$Outbound = { start: number | null; limit: number; max_proposal_index: number | null; include_status?: Array | undefined; offset: number; sort_by?: any; end: number | null; format: string; }; /** @internal */ export declare const GetApiV3SubnetReplicaVersionsRequest$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 GetApiV3SubnetReplicaVersionsRequest$ { /** @deprecated use `GetApiV3SubnetReplicaVersionsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3SubnetReplicaVersionsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3SubnetReplicaVersionsRequest$Outbound` instead. */ type Outbound = GetApiV3SubnetReplicaVersionsRequest$Outbound; } export declare function getApiV3SubnetReplicaVersionsRequestToJSON(getApiV3SubnetReplicaVersionsRequest: GetApiV3SubnetReplicaVersionsRequest): string; export declare function getApiV3SubnetReplicaVersionsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3subnetreplicaversions.d.ts.map