import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type RdpSecurityProtocol = { credssp?: boolean | undefined; credsspEarlyAuth?: boolean | undefined; error?: boolean | undefined; errorBadFlags?: boolean | undefined; errorHybridRequired?: boolean | undefined; errorSslCertMissing?: boolean | undefined; errorSslForbidden?: boolean | undefined; errorSslRequired?: boolean | undefined; errorSslUserAuthRequired?: boolean | undefined; errorUnknown?: boolean | undefined; rawValue?: number | undefined; rdstls?: boolean | undefined; standardRdp?: boolean | undefined; tls?: boolean | undefined; }; /** @internal */ export declare const RdpSecurityProtocol$inboundSchema: z.ZodType; export declare function rdpSecurityProtocolFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=rdpsecurityprotocol.d.ts.map