import { PropertyValue } from './property-value.mjs';

declare class MetaDataValue {
    __classname__: string;
    Property: string;
    Values: string[] | null;
    PropertyValues: PropertyValue[] | null;
    constructor(params: MetaDataValueNamedParameters);
}
interface MetaDataValueNamedParameters {
    Property: string;
    Values?: string[];
    PropertyValues?: PropertyValue[];
}

export { MetaDataValue, type MetaDataValueNamedParameters };
