/**
 *
 */
export class NetworkAddress {
    constructor(networkInterface: any, address: any, subnet: any);
    /** @type {Subnet} */ subnet: Subnet;
    /** @type {NetworkInterface} */ networkInterface: NetworkInterface;
    /** @type {string|Uint8Array|Uint16Array} */ address: string | Uint8Array | Uint16Array;
    get domainNames(): any;
    get family(): any;
    get cidrAddress(): any;
    toString(): string;
}
import { Subnet } from "./subnet.mjs";
