/**
 * Integration file showing how to integrate REPL functionality
 * with the Claude Server Commander
 */
interface ServerInterface {
    registerCommands: (commands: Record<string, Function>) => void;
}
/**
 * Integrates REPL functionality with the server
 * @param server - Server instance
 * @param terminalManager - Terminal manager instance
 */
export declare function integrateREPL(server: ServerInterface, terminalManager: any): void;
export {};
