import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { StructuredTextItem, StructuredTextItem$Outbound } from "./structuredtextitem.js"; export type StructuredText = { text: string; /** * An array of objects each of which contains either a string or a link which optionally corresponds to a document. */ structuredList?: Array | undefined; }; /** @internal */ export declare const StructuredText$inboundSchema: z.ZodType; /** @internal */ export type StructuredText$Outbound = { text: string; structuredList?: Array | undefined; }; /** @internal */ export declare const StructuredText$outboundSchema: z.ZodType; export declare function structuredTextToJSON(structuredText: StructuredText): string; export declare function structuredTextFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=structuredtext.d.ts.map