/** * Check if an IP address is blocked based on CIDR ranges */ export declare function isIPBlocked(ipString: string, whitelistedIPs: string[]): boolean; /** * Check if a string is an IP address */ export declare function isIPAddress(hostname: string): boolean; /** * Check if hostname should be blocked based on patterns */ export declare function isHostnameBlocked(hostname: string): boolean; //# sourceMappingURL=ipBlocking.d.ts.map