import { PropertyValue } from "../PropertyValue";
export declare class MultilineTextPropertyValue extends PropertyValue {
    texts: string[];
    constructor(texts: string[]);
    isEmpty(): boolean;
}
