import * as z from "zod"; /** * 包含问题的JSON对象 */ export type PostAnswerbookAskRequest = { question: string; }; export declare const PostAnswerbookAskRequest$zodSchema: z.ZodType; /** * 服务器内部错误。 */ export type PostAnswerbookAskInternalServerErrorResponseBody = { code?: number | undefined; message?: string | undefined; }; export declare const PostAnswerbookAskInternalServerErrorResponseBody$zodSchema: z.ZodType; /** * 请求参数无效。 */ export type PostAnswerbookAskBadRequestResponseBody = { code?: number | undefined; message?: string | undefined; }; export declare const PostAnswerbookAskBadRequestResponseBody$zodSchema: z.ZodType; /** * 成功获取答案。 */ export type PostAnswerbookAskResponseBody = { question?: string | undefined; answer?: string | undefined; }; export declare const PostAnswerbookAskResponseBody$zodSchema: z.ZodType; export type PostAnswerbookAskResponse = PostAnswerbookAskResponseBody | PostAnswerbookAskBadRequestResponseBody | PostAnswerbookAskInternalServerErrorResponseBody; export declare const PostAnswerbookAskResponse$zodSchema: z.ZodType; //# sourceMappingURL=postanswerbookaskop.d.ts.map