import { AtlexError } from './AtlexError.js'; /** * Thrown when the container detects a circular dependency during resolution. */ export declare class CircularDependencyError extends AtlexError { /** * @param chain - Arrow-separated list of types or keys in the cycle (e.g. `A → B → A`). */ constructor(chain: string); } //# sourceMappingURL=CircularDependencyError.d.ts.map