import type { UAMethod, UAObject, UAProperty } from "node-opcua-address-space-base";
import type { UInt16, UInt32 } from "node-opcua-basic-types";
import type { DataType } from "node-opcua-variant";
/**
 * |                |                                                            |
 * |----------------|------------------------------------------------------------|
 * |namespace       |http://opcfoundation.org/UA/                                |
 * |nodeClass       |ObjectType                                                  |
 * |typedDefinition |LogObjectType i=19352                                       |
 * |isAbstract      |false                                                       |
 */
export interface UALogObject_Base {
    getRecords: UAMethod;
    maxRecords?: UAProperty<UInt32, DataType.UInt32>;
    maxStorageDuration?: UAProperty<number, DataType.Double>;
    minimumSeverity?: UAProperty<UInt16, DataType.UInt16>;
}
export interface UALogObject extends UAObject, UALogObject_Base {
}
