/** * Elrest eDesign Runtime IPC Typescript Model Runtime * * @copyright 2024 Elrest Automations Systeme GMBH */ export declare class NetworkInterface { name: string; internal: boolean; mac: string; address: string; netmask: string; family: string; constructor(name: string, internal: boolean, mac: string, address: string, netmask: string, family: string); }