export declare const AGENT_MANAGER_HOME: string; export declare const CONFIG_PATH: string; export declare const AGENT_PATH: string; export declare const SUBAGENTS_BASE_DIR: string; export declare const SUBAGENTS_PERSIST_PATH: string; export declare const SESSION_DEFER_PATH: string; export declare const OUTBOX_PATH: string; export declare const INSTANCES_DIR: string; export declare const MANAGED_AGENTS_DIR: string; export declare const CLI_LOGINS_DIR: string; export declare const LOG_DIR: string; export declare const LOG_PATH: string; export declare const RECONNECT_INITIAL_MS = 2000; export declare const RECONNECT_MAX_MS = 30000; export declare const REQUEST_TIMEOUT_MS = 30000; export declare const HEARTBEAT_INTERVAL_MS = 30000; export declare const OUTPUT_LIVENESS_MIN_INTERVAL_MS = 15000; export declare const DELEGATION_DEFAULTS: Readonly<{ enabled: true; maxConcurrent: 15; ttlMinutes: 15; claudeBin: "claude"; codexBin: "codex"; appendSystemPromptMode: "role_only"; persistentChatSessions: true; persistentTicketSessions: true; idleMinutes: 10; maxTurnsPerSession: 30; idleRecheckSeconds: 60; progressEscalationHours: 4; chatKeepAliveMaxMinutes: 120; runExecutionLock: true; subagentProgressEscalationHours: 4; }>; export declare const SHARED_WORKTREE_COLD_IMPORT_TTL_MINUTES: number; export declare const TTL_SWEEP_INTERVAL_MS = 60000; export declare const SIGTERM_GRACE_MS = 5000; export declare const STOP_GRACE_MS = 2000; export declare const STOP_FORCE_KILL_SETTLE_MS = 5000; export declare const DEFAULT_CLI_ID = "claude"; export type CliType = string;