import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { NtlmInfo } from "./ntlminfo.js"; export type Winrm = { authTypes?: Array | null | undefined; ntlmInfo?: NtlmInfo | undefined; }; /** @internal */ export declare const Winrm$inboundSchema: z.ZodType; export declare function winrmFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=winrm.d.ts.map