import type { AcurastProjectConfig } from '../types/project.js'; /** * Load a named project entry from an `acurast.json` file. * * If `project` is omitted and the file contains exactly one project, that * project is returned. Otherwise an error is thrown listing the available * project names. */ export declare const loadAcurastConfig: (options?: { filePath?: string; project?: string; }) => AcurastProjectConfig | undefined; //# sourceMappingURL=load-config.d.ts.map