import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type RdpProtocolFlags = { dynvcGraphicsPipeline?: boolean | undefined; extendedClientDataSupported?: boolean | undefined; negRespReserved?: boolean | undefined; restrictedAdminMode?: boolean | undefined; restrictedAuthMode?: boolean | undefined; }; /** @internal */ export declare const RdpProtocolFlags$inboundSchema: z.ZodType; export declare function rdpProtocolFlagsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=rdpprotocolflags.d.ts.map