import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Answer } from "./answer.js"; export type AnswerResult = { answer: Answer; /** * An opaque token that represents this particular Answer. To be used for `/feedback` reporting. */ trackingToken?: string | undefined; }; /** @internal */ export declare const AnswerResult$inboundSchema: z.ZodType; export declare function answerResultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=answerresult.d.ts.map