/**
 * A static class of globals that are parsed from `package.json` at startup, to be used widely.
 */
export default class Package {
    static readonly DIRECTORY: string;
    static readonly NAME: string;
    static readonly HOMEPAGE: string;
    static readonly VERSION: string;
    static readonly ENGINES_NODE: string;
}
