import * as z from "zod"; export type GetSayingDetails = {}; export declare const GetSayingDetails$zodSchema: z.ZodType; /** * 当语料库为空或无法读取时。 */ export type GetSayingInternalServerErrorResponseBody = { code?: string | undefined; details?: GetSayingDetails | undefined; message?: string | undefined; }; export declare const GetSayingInternalServerErrorResponseBody$zodSchema: z.ZodType; /** * 请求成功!返回一条随机的语录。 */ export type GetSayingResponseBody = { text?: string | undefined; }; export declare const GetSayingResponseBody$zodSchema: z.ZodType; export type GetSayingResponse = GetSayingResponseBody | GetSayingInternalServerErrorResponseBody; export declare const GetSayingResponse$zodSchema: z.ZodType; //# sourceMappingURL=getsayingop.d.ts.map