import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DsaPublicKey = { g?: string | undefined; p?: string | undefined; q?: string | undefined; y?: string | undefined; }; /** @internal */ export declare const DsaPublicKey$inboundSchema: z.ZodType; export declare function dsaPublicKeyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=dsapublickey.d.ts.map