/** * Configuration loader for the chained PRs feature. * * Reads and validates .adoconfig.toml from the project root. */ import { type ProjectConfig } from "./chain-types.js"; /** * Load and parse .adoconfig.toml from the project root. * Returns default config if file doesn't exist. */ export declare function loadProjectConfig(projectRoot: string): Promise; //# sourceMappingURL=chain-config.d.ts.map