import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EvidenceType } from "./evidencetype.js"; export type UpdateEvidence = { evidenceType?: EvidenceType | undefined; /** * If updating text evidence, the new text to associate with the dispute. */ text?: string | undefined; }; /** @internal */ export declare const UpdateEvidence$inboundSchema: z.ZodType; /** @internal */ export type UpdateEvidence$Outbound = { evidenceType?: string | undefined; text?: string | undefined; }; /** @internal */ export declare const UpdateEvidence$outboundSchema: z.ZodType; export declare function updateEvidenceToJSON(updateEvidence: UpdateEvidence): string; export declare function updateEvidenceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updateevidence.d.ts.map