import type { WeatherAffinities } from 'pogo-masterfile-types';
import type { AllWeather } from '../typings/dataTypes';
import Masterfile from './Masterfile';
export default class Weather extends Masterfile {
    rawWeather: {
        [id: string]: number[];
    };
    parsedWeather: AllWeather;
    constructor();
    buildWeather(): void;
    addWeather(object: WeatherAffinities['data']): void;
}
