import type { OntologyConfig } from "../../config/types.js"; /** * Find the ontology config file in the given directory or its parents */ export declare function findConfigFile(startDir?: string): string | null; /** * Load the ontology config from a file */ export declare function loadConfig(configPath?: string): Promise<{ config: OntologyConfig; configDir: string; configPath: string; }>;