import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Text contents of a resource. */ export type TextResourceContents = { uri: string; mimeType?: string | null | undefined; meta?: { [k: string]: any; } | null | undefined; text: string; [additionalProperties: string]: unknown; }; /** @internal */ export declare const TextResourceContents$inboundSchema: z.ZodType; export declare function textResourceContentsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=textresourcecontents.d.ts.map