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