export default class SteelPathOffering {
    constructor({ locale }: {
        locale: any;
    });
    currentReward: any;
    activation: Date;
    expiry: Date;
    remaining: any;
    rotation: any;
    evergreens: any;
    /**
     * General data pertaining to incursions
     * @type {object}
     * @property {string} id Identifier for steel path incursion based on start of day.
     * @property {Date} activation when the current incursions became active
     * @property {Date} expiry when the current incursions become inactive
     */
    incursions: object;
}
