import type { IConfigOptions } from '../../domain/interface/index';
import type { Linter } from "eslint";
/**
 * Loads the ESLint configuration for Node.js
 * @param {IConfigOptions} config - Configuration options
 * @returns {Array<Linter.Config>} An array of ESLint configurations for Node.js
 */
export default function loadConfig(config: IConfigOptions): Array<Linter.Config>;
