/**
* Get the current LTS Node version from the Node.js website.
* @author Gabe Abrams
* @returns major version of Node.js (e.g. 22) or null if not found
*/declareconstgetCurrentEvenLTSNodeVersion: () =>Promise<number | null>;
exportdefault getCurrentEvenLTSNodeVersion;