import * as z from "zod"; export type GetMiscTimestampRequest = { ts: string; }; export declare const GetMiscTimestampRequest$zodSchema: z.ZodType; export type GetMiscTimestampDetails = {}; export declare const GetMiscTimestampDetails$zodSchema: z.ZodType; /** * 无效的时间戳参数。请检查 `ts` 参数是否为纯数字字符串。 */ export type GetMiscTimestampBadRequestResponseBody = { code?: string | undefined; details?: GetMiscTimestampDetails | undefined; message?: string | undefined; }; export declare const GetMiscTimestampBadRequestResponseBody$zodSchema: z.ZodType; /** * 转换成功! */ export type GetMiscTimestampResponseBody = { datetime_local?: string | undefined; datetime_utc?: string | undefined; input?: string | undefined; type?: string | undefined; unix_timestamp?: number | undefined; }; export declare const GetMiscTimestampResponseBody$zodSchema: z.ZodType; export type GetMiscTimestampResponse = GetMiscTimestampResponseBody | GetMiscTimestampBadRequestResponseBody; export declare const GetMiscTimestampResponse$zodSchema: z.ZodType; //# sourceMappingURL=getmisctimestampop.d.ts.map