import { TAGS } from './constants';
import { ISOXMLManager } from '../ISOXMLManager';
import { XMLElement } from '../types';
import { CodedCommentListValue } from './CodedCommentListValue';
import { Entity, EntityConstructor, ISOXMLReference } from '../types';
export declare enum CodedCommentCodedCommentScopeEnum {
    Point = "1",
    Global = "2",
    Continuous = "3"
}
export type CodedCommentAttributes = {
    CodedCommentDesignator: string;
    CodedCommentScope: CodedCommentCodedCommentScopeEnum;
    CodedCommentGroupIdRef?: ISOXMLReference;
    CodedCommentListValue?: CodedCommentListValue[];
    ProprietaryAttributes?: {
        [name: string]: string;
    };
    ProprietaryTags?: {
        [tag: string]: XMLElement[];
    };
};
export declare class CodedComment implements Entity {
    attributes: CodedCommentAttributes;
    isoxmlManager: ISOXMLManager;
    tag: TAGS;
    constructor(attributes: CodedCommentAttributes, isoxmlManager: ISOXMLManager);
    static fromXML(xml: XMLElement, isoxmlManager: ISOXMLManager, internalId?: string, targetClass?: EntityConstructor): Promise<Entity>;
    toXML(): XMLElement;
}
