import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type EcdsaPublicKey = { b?: string | undefined; curve?: string | undefined; gx?: string | undefined; gy?: string | undefined; length?: number | undefined; n?: string | undefined; p?: string | undefined; pub?: string | undefined; x?: string | undefined; y?: string | undefined; }; /** @internal */ export declare const EcdsaPublicKey$inboundSchema: z.ZodType; export declare function ecdsaPublicKeyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ecdsapublickey.d.ts.map