/** * CCR Client * This client is used for CCR (Claude Code Remote) communication */ export class CCRClient { constructor() { console.error('CCRClient not implemented'); } async connect(): Promise { console.error('CCRClient.connect not implemented'); } async disconnect(): Promise { console.error('CCRClient.disconnect not implemented'); } async send(data: any): Promise { console.error('CCRClient.send not implemented'); } async receive(): Promise { console.error('CCRClient.receive not implemented'); return null; } }