import * as z from "zod"; export type GetWebparseMetadataRequest = { url: string; }; export declare const GetWebparseMetadataRequest$zodSchema: z.ZodType; export type GetWebparseMetadataInternalServerErrorDetails = {}; export declare const GetWebparseMetadataInternalServerErrorDetails$zodSchema: z.ZodType; /** * 服务器内部错误 */ export type GetWebparseMetadataInternalServerErrorResponseBody = { code?: string | undefined; details?: GetWebparseMetadataInternalServerErrorDetails | undefined; message?: string | undefined; }; export declare const GetWebparseMetadataInternalServerErrorResponseBody$zodSchema: z.ZodType; export type GetWebparseMetadataBadRequestDetails = {}; export declare const GetWebparseMetadataBadRequestDetails$zodSchema: z.ZodType; /** * URL参数缺失或无效 */ export type GetWebparseMetadataBadRequestResponseBody = { code?: string | undefined; details?: GetWebparseMetadataBadRequestDetails | undefined; message?: string | undefined; }; export declare const GetWebparseMetadataBadRequestResponseBody$zodSchema: z.ZodType; export type OpenGraph = {}; export declare const OpenGraph$zodSchema: z.ZodType; /** * 成功响应 */ export type GetWebparseMetadataResponseBody = { page_url?: string | undefined; title?: string | undefined; description?: string | undefined; keywords?: Array | undefined; favicon_url?: string | undefined; language?: string | undefined; author?: string | undefined; published_time?: string | undefined; canonical_url?: string | undefined; generator?: string | undefined; open_graph?: OpenGraph | undefined; }; export declare const GetWebparseMetadataResponseBody$zodSchema: z.ZodType; export type GetWebparseMetadataResponse = GetWebparseMetadataResponseBody | GetWebparseMetadataBadRequestResponseBody | GetWebparseMetadataInternalServerErrorResponseBody; export declare const GetWebparseMetadataResponse$zodSchema: z.ZodType; //# sourceMappingURL=getwebparsemetadataop.d.ts.map