export declare const config: Readonly<{ kos: { host: string; port: number; /** * CPU ID to connect to. * - null: Auto-select first available CPU from menu * - number: Connect to specific CPU by ID */ cpuId: number | null; /** * CPU label to connect to (e.g., 'guidance', 'flight'). * If set, takes precedence over cpuId. */ cpuLabel: string | undefined; }; transport: { /** * Transport type: * - 'socket': Node.js net.Socket (default, recommended - no external deps) * - 'tmux': tmux session with nc (requires tmux + nc) */ type: "socket" | "tmux"; /** Tmux session name when using tmux transport */ tmuxSession: string; }; timeouts: { /** Timeout for initial socket connection */ connect: number; /** Timeout waiting for CPU menu to appear */ cpuMenu: number; /** Timeout waiting for REBOOT response */ reboot: number; /** Timeout waiting for "Proceed" message */ proceed: number; /** Default timeout for command execution */ command: number; /** Delay after telnet connection */ connectDelay: number; /** Delay after disconnect */ disconnectDelay: number; }; }>; export type Config = typeof config; //# sourceMappingURL=config.d.ts.map