import type { EdictModule } from "../ast/nodes.js"; import { type StructuredError } from "../errors/structured-errors.js"; /** * Validates the AST against token budget and complexity quotas. * Used to constrain runaway agents from generating arbitrarily large programs. */ export declare function complexityCheck(module: EdictModule): StructuredError[]; //# sourceMappingURL=complexity.d.ts.map