/** * @license * Copyright 2025-2026 Open Home Foundation * SPDX-License-Identifier: Apache-2.0 */ /** * Ping an IP address using the system ping command. * @param ipAddress The IP address to ping (IPv4 or IPv6) * @param timeout Timeout in seconds (default: 2) * @param attempts Number of ping attempts (default: 1) * @returns Promise resolving to true if ping succeeded, false otherwise */ export declare function pingIp(ipAddress: string, timeout?: number, attempts?: number): Promise; //# sourceMappingURL=network.d.ts.map