declare enum TimeInSeconds {
    MINUTE = 60,
    HOUR = 3600,
    DAY = 86400,
    YEAR = 31536000
}
/**
 * Converts timestamp in milliseconds to seconds
 * @param millis
 */
declare function millisToSeconds(millis: number): number;
/**
 * Current time in seconds
 */
declare function nowInSeconds(): number;

export { TimeInSeconds, millisToSeconds, nowInSeconds };
