import { TAGS } from './constants';
import { ISOXMLManager } from '../ISOXMLManager';
import { XMLElement } from '../types';
import { AllocationStamp } from './AllocationStamp';
import { Entity, EntityConstructor, ISOXMLReference } from '../types';
export type DeviceAllocationAttributes = {
    ClientNAMEValue: string;
    ClientNAMEMask?: string;
    DeviceIdRef?: ISOXMLReference;
    AllocationStamp?: AllocationStamp[];
    ProprietaryAttributes?: {
        [name: string]: string;
    };
    ProprietaryTags?: {
        [tag: string]: XMLElement[];
    };
};
export declare class DeviceAllocation implements Entity {
    attributes: DeviceAllocationAttributes;
    isoxmlManager: ISOXMLManager;
    tag: TAGS;
    constructor(attributes: DeviceAllocationAttributes, isoxmlManager: ISOXMLManager);
    static fromXML(xml: XMLElement, isoxmlManager: ISOXMLManager, internalId?: string, targetClass?: EntityConstructor): Promise<Entity>;
    toXML(): XMLElement;
}
