import type { UAObject, UAProperty } from "node-opcua-address-space-base";
import type { DataType } from "node-opcua-variant";
import type { DTSimpleAttributeOperand } from "./dt_simple_attribute_operand";
import type { UAFolder } from "./ua_folder";
/**
 * |                |                                                            |
 * |----------------|------------------------------------------------------------|
 * |namespace       |http://opcfoundation.org/UA/                                |
 * |nodeClass       |ObjectType                                                  |
 * |typedDefinition |HistoricalEventConfigurationType i=32621                    |
 * |isAbstract      |false                                                       |
 */
export interface UAHistoricalEventConfiguration_Base {
    eventTypes: UAFolder;
    startOfArchive?: UAProperty<Date, DataType.DateTime>;
    startOfOnlineArchive?: UAProperty<Date, DataType.DateTime>;
    sortByEventFields?: UAProperty<DTSimpleAttributeOperand[], DataType.ExtensionObject>;
}
export interface UAHistoricalEventConfiguration extends UAObject, UAHistoricalEventConfiguration_Base {
}
