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

//#region lib/models/MidrathCycle.d.ts
declare class MidrathCycle extends WorldStateObject {
  #private;
  /**
   * Whether it's day or not
   */
  isDay: boolean;
  /**
   * The current state
   */
  state: string;
  constructor();
  /**
   * Get whether or not the event has expired
   */
  get expired(): boolean;
  /**
   * The amount of time left as a string
   */
  get timeLeft(): string;
}
//#endregion
export { MidrathCycle as t };