export declare class GlideIntegerTime { constructor(); /** * Adds the specified number of seconds to this time and returns the new integer time value. */ add(seconds: number): number; /** * Returns the hour portion of the time. */ getHour(): number; /** * Returns the integer time value (hhmmss). */ getIntegerTimeValue(): number; /** * Returns the minute portion of the time. */ getMinute(): number; /** * Returns the second portion of the time. */ getSecond(): number; /** * Sets the time using hours, minutes, and seconds. */ setTime(hours: number, mins: number, secs: number): void; }