import { TNbkConfig } from "../types.js"; /** * Loads and validates the NBK configuration from a JSON file * @param configPath - Path to the config file (optional, defaults to nbk.config.json in current directory) * @returns Validated TNbkConfig object * @throws Error if the configuration is invalid or file doesn't exist */ export declare function loadConfig(configPath?: string): TNbkConfig;