import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CiscoIpslaHandshakeHeader } from "./ciscoipslahandshakeheader.js"; import { CiscoIpslaHandshakeMessage } from "./ciscoipslahandshakemessage.js"; export type CiscoIpslaHandshake = { header?: CiscoIpslaHandshakeHeader | undefined; message?: CiscoIpslaHandshakeMessage | undefined; }; /** @internal */ export declare const CiscoIpslaHandshake$inboundSchema: z.ZodType; export declare function ciscoIpslaHandshakeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ciscoipslahandshake.d.ts.map