/** * Centralized configuration — reads environment variables at startup and * exports validated values used throughout the codebase. Settings-file-backed * options live in domain modules under src/config/ and are re-exported here so * import sites are unchanged (settings-store itself stays internal). */ import type { AppConfig } from "../lib/types.js"; export * from "./agent-settings.js"; export * from "./mcp-settings.js"; export * from "./agent-templates.js"; export * from "./keep-alive-settings.js"; export * from "./misc-settings.js"; export * from "./detail-grant.js"; export declare const TELEGRAM_API_BASE_URL: string; export declare const TELEGRAM_SEND_TIMEOUT_MS: number; export declare const AUTONOMOUS_MODE: boolean; export declare const TEMPLATES_DIR: string; export declare const config: AppConfig; //# sourceMappingURL=index.d.ts.map