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