declare class PropertyValue {
    __classname__: string;
    Value: string;
    Display: string | null;
    Entity: string | null;
    constructor(params: PropertyValueNamedParameters);
}
interface PropertyValueNamedParameters {
    Value: string;
    Display?: string;
    Entity?: string;
}

export { PropertyValue, type PropertyValueNamedParameters };
