import { z } from 'zod'; /** * Response data for GET hostname (mirrors private HostnameGetDataSchema in hostname.ts) */ export declare const HostnameGetResponseDataSchema: z.ZodObject<{ hostname: z.ZodNullable; url: z.ZodNullable; }, z.core.$strip>; export type HostnameGetResponseData = z.infer; /** * Response data for SET hostname (mirrors private HostnameSetDataSchema in hostname.ts) */ export declare const HostnameSetResponseDataSchema: z.ZodObject<{ hostname: z.ZodString; url: z.ZodString; }, z.core.$strip>; export type HostnameSetResponseData = z.infer; /** * Request body for malware check endpoint */ export declare const MalwareCheckRequestSchema: z.ZodObject<{ ecosystem: z.ZodString; packages: z.ZodArray>; }, z.core.$strip>; export type MalwareCheckRequest = z.infer; //# sourceMappingURL=types.d.ts.map