import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AnyConnect = { /** * Version number indicated by the response for config-auth exchange */ aggregateAuthVersion?: number | undefined; /** * Supported methods for users to enter credentials for this VPN */ authMethods?: Array | null | undefined; /** * List of groups a user can authenticate with to use this VPN */ groups?: Array | null | undefined; /** * XML content of the config-auth response */ raw?: string | undefined; /** * Type of the response packet received after initializing the config-auth exchange */ responseType?: string | undefined; }; /** @internal */ export declare const AnyConnect$inboundSchema: z.ZodType; export declare function anyConnectFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=anyconnect.d.ts.map