export declare function isNoNodeSnapshotOptionProvided(): boolean; /** * Gets the major version of the currently running Node.js process. * * @remarks * This function extracts the major version from `process.versions.node` (a string representing the Node.js version), * which includes the major, minor, and patch versions. It splits this string by the `.` character to get an array * of these versions, and then parses the first element of this array (the major version) to a number. * * @returns {number} The major version of the currently running Node.js process. */ export declare function getMajorNodeVersion(): number;