import { TAGS } from './constants';
import { ISOXMLManager } from '../ISOXMLManager';
import { XMLElement } from '../types';
import { Entity, EntityConstructor, ISOXMLReference } from '../types';
export type ConnectionAttributes = {
    DeviceIdRef_0: ISOXMLReference;
    DeviceElementIdRef_0: ISOXMLReference;
    DeviceIdRef_1: ISOXMLReference;
    DeviceElementIdRef_1: ISOXMLReference;
    ProprietaryAttributes?: {
        [name: string]: string;
    };
    ProprietaryTags?: {
        [tag: string]: XMLElement[];
    };
};
export declare class Connection implements Entity {
    attributes: ConnectionAttributes;
    isoxmlManager: ISOXMLManager;
    tag: TAGS;
    constructor(attributes: ConnectionAttributes, isoxmlManager: ISOXMLManager);
    static fromXML(xml: XMLElement, isoxmlManager: ISOXMLManager, internalId?: string, targetClass?: EntityConstructor): Promise<Entity>;
    toXML(): XMLElement;
}
