import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Fortigate = { apiVersion?: string | undefined; build?: number | undefined; serial?: string | undefined; statusCode?: number | undefined; statusMsg?: string | undefined; version?: string | undefined; }; /** @internal */ export declare const Fortigate$inboundSchema: z.ZodType; export declare function fortigateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=fortigate.d.ts.map