import * as z from "zod"; export type GetMiscLunartimeRequest = { ts?: string | undefined; timezone?: string | undefined; }; export declare const GetMiscLunartimeRequest$zodSchema: z.ZodType; /** * 请求参数错误。`timezone` 非法时返回 `invalid timezone: xxx`,`ts` 非法时返回 `invalid timestamp: xxx`。 */ export type GetMiscLunartimeBadRequestResponseBody = { code?: number | undefined; message?: string | undefined; }; export declare const GetMiscLunartimeBadRequestResponseBody$zodSchema: z.ZodType; /** * 万年历查询结果。 */ export type GetMiscLunartimeData = { query_timestamp?: string | undefined; query_timezone?: string | undefined; timezone?: string | undefined; datetime?: string | undefined; datetime_rfc3339?: string | undefined; timestamp_unix?: number | undefined; weekday?: string | undefined; weekday_cn?: string | undefined; lunar_year?: number | undefined; lunar_month?: number | undefined; lunar_day?: number | undefined; is_leap_month?: boolean | undefined; lunar_year_cn?: string | undefined; lunar_month_cn?: string | undefined; lunar_day_cn?: string | undefined; ganzhi_year?: string | undefined; ganzhi_month?: string | undefined; ganzhi_day?: string | undefined; zodiac?: string | undefined; solar_term?: string | undefined; lunar_festivals?: Array | undefined; solar_festivals?: Array | undefined; }; export declare const GetMiscLunartimeData$zodSchema: z.ZodType; /** * 查询成功,返回指定时间和时区下的农历信息。 */ export type GetMiscLunartimeResponseBody = { code?: number | undefined; message?: string | undefined; data?: GetMiscLunartimeData | undefined; }; export declare const GetMiscLunartimeResponseBody$zodSchema: z.ZodType; export type GetMiscLunartimeResponse = GetMiscLunartimeResponseBody | GetMiscLunartimeBadRequestResponseBody; export declare const GetMiscLunartimeResponse$zodSchema: z.ZodType; //# sourceMappingURL=getmisclunartimeop.d.ts.map