import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CiscoIpslaHandshake } from "./ciscoipslahandshake.js"; import { CiscoIpslaMeasureResponse } from "./ciscoipslameasureresponse.js"; export type CiscoIpsla = { handshake?: CiscoIpslaHandshake | undefined; measureResponse?: CiscoIpslaMeasureResponse | undefined; }; /** @internal */ export declare const CiscoIpsla$inboundSchema: z.ZodType; export declare function ciscoIpslaFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ciscoipsla.d.ts.map