/** * Checks if a port at a given host can be reached * @returns boolean */ export declare const isPortReachable: ({ host, port, timeout, }: { host: string; port: number; timeout?: number; }) => Promise;