import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type IkeV1 = { /** * Did the host accept our security proposal? When false, the host responded with an error. */ acceptedProposal?: boolean | undefined; /** * Which types of NOTIFY messages did the host send us? */ notifyMessageTypes?: Array | null | undefined; /** * The list of Vendor ID "extensions" the host claimed to support in its handshake */ vendorIds?: Array | null | undefined; }; /** @internal */ export declare const IkeV1$inboundSchema: z.ZodType; export declare function ikeV1FromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ikev1.d.ts.map