/** * Checks if an IP address is within private IP ranges * @param {string} ip - IP address to check (e.g., "192.168.1.1") * @returns {boolean} True if the IP is private, false otherwise */ export declare const isPrivateIp: (ip: string) => boolean;