import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Spice = { majorVersion?: number | undefined; minorVersion?: number | undefined; tlsOnly?: boolean | undefined; x509PublicKey?: string | undefined; }; /** @internal */ export declare const Spice$inboundSchema: z.ZodType; export declare function spiceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=spice.d.ts.map