import type { UAString } 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";
import type { DTServiceCertificate } from "./dt_service_certificate";
/**
 * |           |                                                            |
 * |-----------|------------------------------------------------------------|
 * | namespace |http://opcfoundation.org/UA/                                |
 * | nodeClass |DataType                                                    |
 * | name      |AuthorizationServiceConfigurationDataType                   |
 * | isAbstract|false                                                       |
 */
export interface DTAuthorizationServiceConfiguration extends DTBaseConfigurationRecord {
    name: UAString;
    recordProperties: DTKeyValuePair[];
    serviceUri: UAString;
    serviceCertificates: DTServiceCertificate[];
    issuerEndpointSettings: UAString;
}
export interface UDTAuthorizationServiceConfiguration extends ExtensionObject, DTAuthorizationServiceConfiguration {
}
