import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; /** * GIF的背景颜色。留空则由后端服务决定默认值。 */ export declare const GetImageMotouBgColor: { readonly White: "white"; readonly Black: "black"; readonly Transparent: "transparent"; }; /** * GIF的背景颜色。留空则由后端服务决定默认值。 */ export type GetImageMotouBgColor = ClosedEnum; export declare const GetImageMotouBgColor$zodSchema: z.ZodEnum<{ white: "white"; black: "black"; transparent: "transparent"; }>; export type GetImageMotouRequest = { qq: string; bg_color?: GetImageMotouBgColor | undefined; }; export declare const GetImageMotouRequest$zodSchema: z.ZodType; /** * 服务器内部错误。可能的原因包括:获取QQ头像失败,或在生成GIF过程中发生错误。 */ export type GetImageMotouInternalServerErrorResponseBody = { error?: string | undefined; }; export declare const GetImageMotouInternalServerErrorResponseBody$zodSchema: z.ZodType; /** * 请求参数错误。必须提供有效的 'qq' 参数。 */ export type GetImageMotouBadRequestResponseBody = { error?: string | undefined; }; export declare const GetImageMotouBadRequestResponseBody$zodSchema: z.ZodType; export type GetImageMotouResponse = Uint8Array | string | GetImageMotouBadRequestResponseBody | GetImageMotouInternalServerErrorResponseBody; export declare const GetImageMotouResponse$zodSchema: z.ZodType; //# sourceMappingURL=getimagemotouop.d.ts.map