import { Tag } from "../../Tags";
import { PropertyValue } from "../PropertyValue";
export declare class TagsPropertyValue extends PropertyValue {
    tags: Array<Tag>;
    constructor(tags: Array<Tag>);
    isEmpty(): boolean;
}
