import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Memcached = { /** * Whether server responds to a handshake using the ASCII wire format of the protocol. */ asciiBindingProtocolEnabled?: boolean | undefined; /** * Whether server responds to a handshake using the binary wire format of the protocol. */ binaryBindingProtocolEnabled?: boolean | undefined; /** * Whether the server on the UDP port with the same number responds to a handshake using the ASCII wire format of the protocol. */ respondsToUdp?: boolean | undefined; /** * Server information returned in response to the stats command, as a set of key:value pairs. */ stats?: { [k: string]: string; } | undefined; /** * The Memcached version indicated in the server's response. */ version?: string | undefined; }; /** @internal */ export declare const Memcached$inboundSchema: z.ZodType; export declare function memcachedFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=memcached.d.ts.map