import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type RsaPublicKey = { /** * The RSA key's public exponent (e). */ exponent?: number | undefined; /** * Bit-length of the RSA modulus. */ length?: number | undefined; /** * The RSA key's modulus (n) in big-endian encoding. */ modulus?: string | undefined; }; /** @internal */ export declare const RsaPublicKey$inboundSchema: z.ZodType; export declare function rsaPublicKeyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=rsapublickey.d.ts.map