import { r as WorldStateObject } from "./WorldStateObject-CIJgXUCx.mjs";

//#region lib/models/VallisCycle.d.ts
/**
 * Represents the current Earth Day/Night Cycle
 * @augments {WorldStateObject}
 */
declare class VallisCycle extends WorldStateObject {
  #private;
  /**
   * Whether or not this it's daytime
   */
  isWarm: boolean;
  /**
   * Current cycle state. One of `warm`, `cold`
   */
  state: string;
  constructor();
  /**
   * Whether this event has expired
   */
  get expired(): boolean;
  /**
   * Time remaining string
   */
  get timeLeft(): string;
  get shortString(): string;
}
//#endregion
export { VallisCycle as t };