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