import * as z from "zod"; /** * 包含待加密文本 'text' 和密钥 'key' 的JSON对象 */ export type PostTextAesEncryptRequest = { key: string; text: string; }; export declare const PostTextAesEncryptRequest$zodSchema: z.ZodType; export type PostTextAesEncryptInternalServerErrorDetails = {}; export declare const PostTextAesEncryptInternalServerErrorDetails$zodSchema: z.ZodType; /** * 加密失败 */ export type PostTextAesEncryptInternalServerErrorResponseBody = { code?: string | undefined; details?: PostTextAesEncryptInternalServerErrorDetails | undefined; message?: string | undefined; }; export declare const PostTextAesEncryptInternalServerErrorResponseBody$zodSchema: z.ZodType; export type PostTextAesEncryptBadRequestDetails = {}; export declare const PostTextAesEncryptBadRequestDetails$zodSchema: z.ZodType; /** * 无效的请求参数 */ export type PostTextAesEncryptBadRequestResponseBody = { code?: string | undefined; details?: PostTextAesEncryptBadRequestDetails | undefined; message?: string | undefined; }; export declare const PostTextAesEncryptBadRequestResponseBody$zodSchema: z.ZodType; /** * 成功响应 */ export type PostTextAesEncryptResponseBody = { ciphertext?: string | undefined; }; export declare const PostTextAesEncryptResponseBody$zodSchema: z.ZodType; export type PostTextAesEncryptResponse = PostTextAesEncryptResponseBody | PostTextAesEncryptBadRequestResponseBody | PostTextAesEncryptInternalServerErrorResponseBody; export declare const PostTextAesEncryptResponse$zodSchema: z.ZodType; //# sourceMappingURL=posttextaesencryptop.d.ts.map