import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type ReplicaVersion = { /** * Replica Version ID */ replicaVersionId?: string | undefined; /** * Executed Timestamp Seconds */ executedTimestampSeconds?: string | undefined; /** * Proposal ID */ proposalId?: string | undefined; }; /** @internal */ export declare const ReplicaVersion$inboundSchema: z.ZodType; /** @internal */ export type ReplicaVersion$Outbound = { replica_version_id?: string | undefined; executed_timestamp_seconds?: string | undefined; proposal_id?: string | undefined; }; /** @internal */ export declare const ReplicaVersion$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 ReplicaVersion$ { /** @deprecated use `ReplicaVersion$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ReplicaVersion$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ReplicaVersion$Outbound` instead. */ type Outbound = ReplicaVersion$Outbound; } export declare function replicaVersionToJSON(replicaVersion: ReplicaVersion): string; export declare function replicaVersionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=replicaversion.d.ts.map