import { PropertyValue } from "../PropertyValue";
export declare class LinkPropertyValue extends PropertyValue {
    link: string;
    constructor(link: string);
    isEmpty(): boolean;
}
