import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Content that has been generated or extrapolated from the documents present in the document field. */ export type GeneratedAttachmentContent = { /** * The header describing the generated content. */ displayHeader?: string | undefined; /** * The content that has been generated. */ text?: string | undefined; }; /** @internal */ export declare const GeneratedAttachmentContent$inboundSchema: z.ZodType; export declare function generatedAttachmentContentFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=generatedattachmentcontent.d.ts.map