import { GlideDateTime } from "./GlideDateTime"; export declare class GlideCalendarDateTime extends GlideDateTime { /** * Sets the dateTime value to the UTC value of the initial dateTime value, adjusted from the system timezone. * Uses the fDate to determine if DST is applicable. * does nothing when fDate is null, as there's nothing to adjust. */ adjustFromFloatingTzToUTC(): void; /** * Sets the value of this CalendarDateTime object to the specified value. * Enhances the GlideDateTime.setValue method to support both time_zone_field and time_zone_value attributes. * If time_zone_field is present, it's checked if the timezone is empty. If it is, the timezone is treated as 'floating', i.e. derived from system time. * If time_zone_value is present, the value of the attribute is used to set the timezone. This timezone is used to convert the value to UTC. * * @param o The value to set this CalendarDateTime object to. */ setValue(o: any): void; }