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 CreateEvidenceText = { /** * The text to associate with the dispute as evidence. */ text: string; evidenceType: EvidenceType; }; /** @internal */ export declare const CreateEvidenceText$inboundSchema: z.ZodType; /** @internal */ export type CreateEvidenceText$Outbound = { text: string; evidenceType: string; }; /** @internal */ export declare const CreateEvidenceText$outboundSchema: z.ZodType; export declare function createEvidenceTextToJSON(createEvidenceText: CreateEvidenceText): string; export declare function createEvidenceTextFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createevidencetext.d.ts.map