import * as z from "zod/v3"; /** * Describes text content or base64 encoded binary content */ export type ContentDefinition = { mimeType: string; /** * text content. Only one of textContent or binary content can be specified */ textContent?: string | undefined; /** * base64 encoded binary content. Only one of textContent or binary content can be specified */ binaryContent?: string | undefined; }; /** @internal */ export type ContentDefinition$Outbound = { mimeType: string; textContent?: string | undefined; binaryContent?: string | undefined; }; /** @internal */ export declare const ContentDefinition$outboundSchema: z.ZodType; export declare function contentDefinitionToJSON(contentDefinition: ContentDefinition): string; //# sourceMappingURL=contentdefinition.d.ts.map