/**
 * Determines if the current runtime environment is Node.js.
 *
 * @returns {boolean} `true` if the runtime is Node.js, otherwise `false`.
 */
declare const isNode: () => boolean;
export default isNode;
