import type { UACertificate, UACertificate_Base } from "./ua_certificate";
/**
 * |                |                                                            |
 * |----------------|------------------------------------------------------------|
 * |namespace       |http://opcfoundation.org/UA/                                |
 * |nodeClass       |ObjectType                                                  |
 * |typedDefinition |UserCertificateType i=19323                                 |
 * |isAbstract      |true                                                        |
 */
export type UAUserCertificate_Base = UACertificate_Base;
export interface UAUserCertificate extends UACertificate, UAUserCertificate_Base {
}
