/** * ObjectQL * Copyright (c) 2026-present ObjectStack Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /** * Resolve the absolute path to the project configuration file. * * - When `configPath` is provided, it is resolved relative to `cwd` (or used as-is if already absolute). * - When omitted, the function searches the `cwd` for known config file names in priority order. * * @returns The absolute path to the config file. * @throws If no config file can be located. */ export declare function resolveConfigFile(configPath?: string, cwd?: string): string; /** * Config file names used for doctor/validation checks. * Includes sub-directory variants (src/). */ export declare const CONFIG_SEARCH_PATHS: readonly ["objectstack.config.ts", "objectstack.config.js", "objectql.config.ts", "objectql.config.js", "src/objectstack.config.ts", "src/objectstack.config.js", "src/objectql.config.ts", "src/objectql.config.js"];