import { type FindConfigDirMatchesOptions } from "./config-dir.js"; /** * Loads and validates a project's Automate.ax configuration file. * * @param configPath - Absolute path to the configuration file. * @throws When the file cannot be loaded or its contents are invalid. */ export declare function loadProjectConfig(configPath: string): Promise<{ projectId: string; }>; /** * Loads the nearby project config when directory discovery is unambiguous. * * @param options - Config directory search options. */ export declare function findProjectConfig(options?: FindConfigDirMatchesOptions): Promise<{ projectId: string; } | undefined>; //# sourceMappingURL=project-config.d.ts.map