/**
 * Type of a node version array from https://nodejs.org/download/release/index.json
 * @author Gabe Abrams
 */
declare type NodeVersionArray = {
    version: string;
    date: string;
    files: string[];
    npm: string;
    v8: string;
    uv: string;
    zlib: string;
    openssl: string;
    modules: string;
    lts: string | false;
    security: boolean;
}[];
export default NodeVersionArray;
