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