import * as z from "zod"; export type GetSocialQqUserinfoRequest = { qq: string; }; export declare const GetSocialQqUserinfoRequest$zodSchema: z.ZodType; export type GetSocialQqUserinfoNotFoundDetails = {}; export declare const GetSocialQqUserinfoNotFoundDetails$zodSchema: z.ZodType; /** * 获取QQ用户信息失败或用户不存在 */ export type GetSocialQqUserinfoNotFoundResponseBody = { code?: string | undefined; details?: GetSocialQqUserinfoNotFoundDetails | undefined; message?: string | undefined; }; export declare const GetSocialQqUserinfoNotFoundResponseBody$zodSchema: z.ZodType; export type GetSocialQqUserinfoBadRequestDetails = {}; export declare const GetSocialQqUserinfoBadRequestDetails$zodSchema: z.ZodType; /** * 缺少或无效的qq参数 */ export type GetSocialQqUserinfoBadRequestResponseBody = { code?: string | undefined; details?: GetSocialQqUserinfoBadRequestDetails | undefined; message?: string | undefined; }; export declare const GetSocialQqUserinfoBadRequestResponseBody$zodSchema: z.ZodType; /** * 成功响应,返回QQ用户的详细信息 */ export type GetSocialQqUserinfoResponseBody = { qq?: string | undefined; nickname?: string | undefined; long_nick?: string | undefined; avatar_url?: string | undefined; age?: number | undefined; sex?: string | undefined; qid?: string | undefined; qq_level?: number | undefined; location?: string | undefined; email?: string | undefined; is_vip?: boolean | undefined; vip_level?: number | undefined; reg_time?: string | undefined; last_updated?: string | undefined; }; export declare const GetSocialQqUserinfoResponseBody$zodSchema: z.ZodType; export type GetSocialQqUserinfoResponse = GetSocialQqUserinfoResponseBody | GetSocialQqUserinfoBadRequestResponseBody | GetSocialQqUserinfoNotFoundResponseBody; export declare const GetSocialQqUserinfoResponse$zodSchema: z.ZodType; //# sourceMappingURL=getsocialqquserinfoop.d.ts.map