import { TAGS } from './constants';
import { ISOXMLManager } from '../ISOXMLManager';
import { XMLElement } from '../types';
import { Entity, EntityConstructor, ISOXMLReference } from '../types';
export type DataLogTriggerAttributes = {
    DataLogDDI: string;
    DataLogMethod: number;
    DataLogDistanceInterval?: number;
    DataLogTimeInterval?: number;
    DataLogThresholdMinimum?: number;
    DataLogThresholdMaximum?: number;
    DataLogThresholdChange?: number;
    DeviceElementIdRef?: ISOXMLReference;
    ValuePresentationIdRef?: ISOXMLReference;
    DataLogPGN?: number;
    DataLogPGNStartBit?: number;
    DataLogPGNStopBit?: number;
    ProprietaryAttributes?: {
        [name: string]: string;
    };
    ProprietaryTags?: {
        [tag: string]: XMLElement[];
    };
};
export declare class DataLogTrigger implements Entity {
    attributes: DataLogTriggerAttributes;
    isoxmlManager: ISOXMLManager;
    tag: TAGS;
    constructor(attributes: DataLogTriggerAttributes, isoxmlManager: ISOXMLManager);
    static fromXML(xml: XMLElement, isoxmlManager: ISOXMLManager, internalId?: string, targetClass?: EntityConstructor): Promise<Entity>;
    toXML(): XMLElement;
}
