import { TAGS } from './constants';
import { ISOXMLManager } from '../ISOXMLManager';
import { XMLElement } from '../types';
import { Entity, EntityConstructor, ISOXMLReference } from '../types';
export type TimelogDataLogValueAttributes = {
    ProcessDataDDI: string;
    ProcessDataValue: string;
    DeviceElementIdRef: ISOXMLReference;
    DataLogPGN?: number;
    DataLogPGNStartBit?: number;
    DataLogPGNStopBit?: number;
    ProprietaryAttributes?: {
        [name: string]: string;
    };
    ProprietaryTags?: {
        [tag: string]: XMLElement[];
    };
};
export declare class TimelogDataLogValue implements Entity {
    attributes: TimelogDataLogValueAttributes;
    isoxmlManager: ISOXMLManager;
    tag: TAGS;
    constructor(attributes: TimelogDataLogValueAttributes, isoxmlManager: ISOXMLManager);
    static fromXML(xml: XMLElement, isoxmlManager: ISOXMLManager, internalId?: string, targetClass?: EntityConstructor): Promise<Entity>;
    toXML(): XMLElement;
}
