import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Auth } from "./auth.js"; import { Members } from "./members.js"; export type EtcdV2 = { auth?: Auth | undefined; members?: Array | null | undefined; totalKeys?: number | undefined; }; /** @internal */ export declare const EtcdV2$inboundSchema: z.ZodType; export declare function etcdV2FromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=etcdv2.d.ts.map