import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Gemini = { body?: string | undefined; clientCertRequired?: boolean | undefined; meta?: string | undefined; statusCode?: number | undefined; }; /** @internal */ export declare const Gemini$inboundSchema: z.ZodType; export declare function geminiFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=gemini.d.ts.map