import { PropertySet } from "./PropertySet"; import { PropertyType } from "./property_type/PropertyType"; export declare class PropertyNameString { readonly propertySet: PropertySet; readonly propertyName: string; readonly propertyType: PropertyType; constructor(propertySet: PropertySet, propertyName: string, propertyType: PropertyType); toString(): string; }