import { NewebConfig } from "../types/index.js"; /** * Searches for a config file using Node.js APIs. If the environment is determined to be a browser, * returns the default configuration. This function should be compiled at build time to return the * configuration by using a bundler plugin. Alternatively, it can also be evaluated at runtime by using * the static `Configuration` class. * * @param path Use this when neweb can't find the correct config file * @param logging Disables logging. Mostly used to avoid a stack overflow with the Logger class */ declare function getConfig(path?: string | null, logging?: boolean): Promise; export { getConfig as default };