import * as z from "zod"; /** * 包含待解密文本 'text'、密钥 'key' 和随机数 'nonce' 的JSON对象 */ export type PostTextAesDecryptRequest = { key: string; text: string; nonce: string; }; export declare const PostTextAesDecryptRequest$zodSchema: z.ZodType; export type PostTextAesDecryptInternalServerErrorDetails = {}; export declare const PostTextAesDecryptInternalServerErrorDetails$zodSchema: z.ZodType; /** * 解密失败 */ export type PostTextAesDecryptInternalServerErrorResponseBody = { code?: string | undefined; details?: PostTextAesDecryptInternalServerErrorDetails | undefined; message?: string | undefined; }; export declare const PostTextAesDecryptInternalServerErrorResponseBody$zodSchema: z.ZodType; export type PostTextAesDecryptBadRequestDetails = {}; export declare const PostTextAesDecryptBadRequestDetails$zodSchema: z.ZodType; /** * 无效的请求参数 */ export type PostTextAesDecryptBadRequestResponseBody = { code?: string | undefined; details?: PostTextAesDecryptBadRequestDetails | undefined; message?: string | undefined; }; export declare const PostTextAesDecryptBadRequestResponseBody$zodSchema: z.ZodType; /** * 成功响应 */ export type PostTextAesDecryptResponseBody = { plaintext?: string | undefined; }; export declare const PostTextAesDecryptResponseBody$zodSchema: z.ZodType; export type PostTextAesDecryptResponse = PostTextAesDecryptResponseBody | PostTextAesDecryptBadRequestResponseBody | PostTextAesDecryptInternalServerErrorResponseBody; export declare const PostTextAesDecryptResponse$zodSchema: z.ZodType; //# sourceMappingURL=posttextaesdecryptop.d.ts.map