import { PropertyType } from "./property_type/PropertyType"; export declare class PropertyTag { static readonly MV_PROPERTY_TYPE_BASE = 4096; readonly propertyId: number; readonly propertyType: PropertyType; constructor(propertyId: number, propertyType: PropertyType); isNamed(): boolean; isMultiValued(): boolean; static equal(tag1: PropertyTag, tag2: PropertyTag): boolean; toString(): any; }