import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type DocumentTextContent = {
    text: string;
};
/** @internal */
export declare const DocumentTextContent$inboundSchema: z.ZodType<DocumentTextContent, z.ZodTypeDef, unknown>;
export declare function documentTextContentFromJSON(jsonString: string): SafeParseResult<DocumentTextContent, SDKValidationError>;
//# sourceMappingURL=documenttextcontent.d.ts.map