import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Answer = { /** * An answer to a question. */ text: string; /** * The evidence used to derive the answer. */ evidence?: Array | undefined; }; /** @internal */ export declare const Answer$inboundSchema: z.ZodType; /** @internal */ export type Answer$Outbound = { text: string; evidence?: Array | undefined; }; /** @internal */ export declare const Answer$outboundSchema: z.ZodType; export declare function answerToJSON(answer: Answer): string; export declare function answerFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=answer.d.ts.map