import { CountryReference, EntityListWrapper, FlatEntity } from "funktologies";
import { AirportNpmSourceObject } from "../models/airport-npm-source-object";
declare class GlobalStore {
    LOG_FILE_NAME: string;
    LOG_STREAM: any;
    countriesInList: CountryReference[];
    debugLogger: any;
    errorLogger: any;
    progressLogger: any;
    airlinesNotFound: string[];
    airportsNotFound: string[];
    airportTable: {
        [key: string]: AirportNpmSourceObject;
    };
    failedAirlines: string[];
    failedAirports: string[];
    jsonLD: FlatEntity[];
    jsonNT: string;
    airports: EntityListWrapper;
    airlines: EntityListWrapper;
    countries: EntityListWrapper;
    elevations: EntityListWrapper;
    helicopterLandingZones: EntityListWrapper;
    locations: EntityListWrapper;
    municipalities: EntityListWrapper;
    runways: EntityListWrapper;
    surfaceMaterials: EntityListWrapper;
}
export declare const store: GlobalStore;
export {};
