import * as z from "zod"; /** * 包含待分析文本 'text' 的JSON对象 */ export type PostTextAnalyzeRequest = { text: string; }; export declare const PostTextAnalyzeRequest$zodSchema: z.ZodType; export type PostTextAnalyzeDetails = {}; export declare const PostTextAnalyzeDetails$zodSchema: z.ZodType; /** * 请求体无效或文本为空 */ export type PostTextAnalyzeBadRequestResponseBody = { code?: string | undefined; details?: PostTextAnalyzeDetails | undefined; message?: string | undefined; }; export declare const PostTextAnalyzeBadRequestResponseBody$zodSchema: z.ZodType; /** * 成功响应 */ export type PostTextAnalyzeResponseBody = { characters?: number | undefined; lines?: number | undefined; paragraphs?: number | undefined; sentences?: number | undefined; words?: number | undefined; }; export declare const PostTextAnalyzeResponseBody$zodSchema: z.ZodType; export type PostTextAnalyzeResponse = PostTextAnalyzeResponseBody | PostTextAnalyzeBadRequestResponseBody; export declare const PostTextAnalyzeResponse$zodSchema: z.ZodType; //# sourceMappingURL=posttextanalyzeop.d.ts.map