import type { UAString, UInt16 } from "node-opcua-basic-types";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { DTBaseConfigurationRecord } from "./dt_base_configuration_record";
import type { DTKeyValuePair } from "./dt_key_value_pair";
/**
 * |           |                                                            |
 * |-----------|------------------------------------------------------------|
 * | namespace |http://opcfoundation.org/UA/                                |
 * | nodeClass |DataType                                                    |
 * | name      |EndpointDataType                                            |
 * | isAbstract|false                                                       |
 */
export interface DTEndpoint extends DTBaseConfigurationRecord {
    name: UAString;
    recordProperties: DTKeyValuePair[];
    discoveryUrls: UAString[];
    networkName: UAString;
    port: UInt16;
}
export interface UDTEndpoint extends ExtensionObject, DTEndpoint {
}
