import { z } from 'zod'; export declare const AbuseIPDBConfigSchema: z.ZodObject<{ apiKey: z.ZodOptional; baseUrl: z.ZodOptional; authToken: z.ZodOptional; timeout: z.ZodDefault>; }, "strip", z.ZodTypeAny, { timeout: number; apiKey?: string | undefined; baseUrl?: string | undefined; authToken?: string | undefined; }, { apiKey?: string | undefined; baseUrl?: string | undefined; authToken?: string | undefined; timeout?: number | undefined; }>; export type AbuseIPDBConfig = z.infer;