/**
 * Represents the current Cambion Drift Fass/Vome Cycle
 * @augments {WorldstateObject}
 * @property {string} timeLeft time rendering of amount of time left
 */
export default class CambionCycle extends WorldstateObject {
    /**
     * @param   {CetusCycle}        cetusCycle Match data from cetus cycle for data
     */
    constructor(cetusCycle: CetusCycle);
    state: string;
    active: string;
    id: string;
    /**
     * Get whether the event has expired
     * @returns {boolean} whether the event has expired
     */
    getExpired(): boolean;
}
import WorldstateObject from './WorldstateObject.js';
