import * as z from "zod"; export type GetNetworkIcpRequest = { domain: string; }; export declare const GetNetworkIcpRequest$zodSchema: z.ZodType; export type GetNetworkIcpNotFoundDetails = {}; export declare const GetNetworkIcpNotFoundDetails$zodSchema: z.ZodType; /** * 未查询到备案信息。该域名可能没有在工信部备案,或者是我们查询的上游接口暂时没有收录。 */ export type GetNetworkIcpNotFoundResponseBody = { code?: string | undefined; details?: GetNetworkIcpNotFoundDetails | undefined; message?: string | undefined; }; export declare const GetNetworkIcpNotFoundResponseBody$zodSchema: z.ZodType; export type GetNetworkIcpBadRequestDetails = {}; export declare const GetNetworkIcpBadRequestDetails$zodSchema: z.ZodType; /** * 请求参数无效。请检查 `domain` 参数是否提供且格式正确。 */ export type GetNetworkIcpBadRequestResponseBody = { code?: string | undefined; details?: GetNetworkIcpBadRequestDetails | undefined; message?: string | undefined; }; export declare const GetNetworkIcpBadRequestResponseBody$zodSchema: z.ZodType; /** * 查询成功!返回该域名的ICP备案详情。 */ export type GetNetworkIcpResponseBody = { code?: string | undefined; domain?: string | undefined; msg?: string | undefined; natureName?: string | undefined; serviceLicence?: string | undefined; unitName?: string | undefined; }; export declare const GetNetworkIcpResponseBody$zodSchema: z.ZodType; export type GetNetworkIcpResponse = GetNetworkIcpResponseBody | GetNetworkIcpBadRequestResponseBody | GetNetworkIcpNotFoundResponseBody; export declare const GetNetworkIcpResponse$zodSchema: z.ZodType; //# sourceMappingURL=getnetworkicpop.d.ts.map