import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type OtherName = { /** * The OID identifying the syntax of the otherName value. */ id?: string | undefined; /** * The raw otherName value. */ value?: string | undefined; }; /** @internal */ export declare const OtherName$inboundSchema: z.ZodType; export declare function otherNameFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=othername.d.ts.map