import { PropertyValue } from "../PropertyValue";
export declare class DatePropertyValue extends PropertyValue {
    date: string;
    timeZoneId: string;
    constructor(date: Date, timeZoneId: string);
    isEmpty(): boolean;
}
