/** * MCP Session Manager - Configuration */ import type { DaemonConfig, ManagerConfig } from "./types.js"; declare const RUNTIME_DIR: string; export declare function ensureRuntimeDir(): void; export declare function getLockFilePath(daemonName: string): string; export declare function getLogFilePath(daemonName: string): string; export declare function getDefaultDaemonConfigs(): DaemonConfig[]; export declare function getManagerConfig(): ManagerConfig; export declare function getDaemonConfig(name: string): DaemonConfig | undefined; export declare const MANAGER_PORT = 3199; export { RUNTIME_DIR }; //# sourceMappingURL=config.d.ts.map