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