export declare class GlideIntegerDate { /** * Adds the specified number of days to this date. */ addDays(days: number): void; /** * Compares this IntegerDate to another. */ compareTo(otherIntegerDate: any): number; /** * Returns the difference in days between this date and the specified IntegerDate. */ daysDiff(end: GlideIntegerDate): number; /** * Returns the difference in days between this date and the specified integer date value. */ daysDiff(intDate: number): number; /** * Returns the display value of this date in the user's date format. */ getDisplayValue(): string; /** * Returns the value as it will be stored in the db (yyyymmdd). */ getValue(): string; /** * Sets the value of this IntegerDate from the given object. */ setValue(o: any): void; }