import type { Byte, UAString } from "node-opcua-basic-types";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { DTApplicationDescription } from "./dt_application_description";
import type { DTStructure } from "./dt_structure";
import type { DTUserTokenPolicy } from "./dt_user_token_policy";
import type { EnumMessageSecurityMode } from "./enum_message_security_mode";
/**
 * |           |                                                            |
 * |-----------|------------------------------------------------------------|
 * | namespace |http://opcfoundation.org/UA/                                |
 * | nodeClass |DataType                                                    |
 * | name      |EndpointDescription                                         |
 * | isAbstract|false                                                       |
 */
export interface DTEndpointDescription extends DTStructure {
    endpointUrl: UAString;
    server: DTApplicationDescription;
    serverCertificate: Buffer;
    securityMode: EnumMessageSecurityMode;
    securityPolicyUri: UAString;
    userIdentityTokens: DTUserTokenPolicy[];
    transportProfileUri: UAString;
    securityLevel: Byte;
}
export interface UDTEndpointDescription extends ExtensionObject, DTEndpointDescription {
}
