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