import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SearchResult, SearchResult$Outbound } from "./searchresult.js"; export type ExtractedQnA = { /** * Heading text that was matched to produce this result. */ heading?: string | undefined; /** * Question text that was matched to produce this result. */ question?: string | undefined; questionResult?: SearchResult | undefined; }; /** @internal */ export declare const ExtractedQnA$inboundSchema: z.ZodType; /** @internal */ export type ExtractedQnA$Outbound = { heading?: string | undefined; question?: string | undefined; questionResult?: SearchResult$Outbound | undefined; }; /** @internal */ export declare const ExtractedQnA$outboundSchema: z.ZodType; export declare function extractedQnAToJSON(extractedQnA: ExtractedQnA): string; export declare function extractedQnAFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=extractedqna.d.ts.map