import type { KlawConfig } from "./types.js"; export declare const DEFAULT_AGENT_MAX_CONCURRENT = 4; export declare const DEFAULT_SUBAGENT_MAX_CONCURRENT = 8; export declare const DEFAULT_SUBAGENT_MAX_CHILDREN_PER_AGENT = 5; export declare const DEFAULT_SUBAGENT_ARCHIVE_AFTER_MINUTES = 60; export declare const DEFAULT_SUBAGENT_MAX_SPAWN_DEPTH = 1; export declare function resolveAgentMaxConcurrent(cfg?: KlawConfig): number; export declare function resolveSubagentMaxConcurrent(cfg?: KlawConfig): number;