import { CountryReference, EntityListWrapper, FlatEntity } from "funktologies";
declare class GlobalStore {
    LOG_FILE_NAME: string;
    LOG_STREAM: any;
    countriesInList: CountryReference[];
    countriesNotFound: string[];
    debugLogger: any;
    errorLogger: any;
    progressLogger: any;
    failedCountries: CountryReference[];
    jsonLD: FlatEntity[];
    jsonNT: string;
    countries: EntityListWrapper;
    govOffices: EntityListWrapper;
    persons: EntityListWrapper;
}
export declare const store: GlobalStore;
export {};
