import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { RdpEmbeddedRSACert } from "./rdpembeddedrsacert.js"; export type RdpCertificateInfo = { internalX509ChainFps?: Array | null | undefined; proprietaryRsaKey?: RdpEmbeddedRSACert | undefined; }; /** @internal */ export declare const RdpCertificateInfo$inboundSchema: z.ZodType; export declare function rdpCertificateInfoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=rdpcertificateinfo.d.ts.map