/** WebSocket port for phibelle-kit CLI ↔ web app communication. Must match app's use-cli-websocket.ts */ export declare const WS_PORT = 31113; /** Scene JSON file in cloned scene directory */ export declare const SCENE_FILE_NAME = "scene.phibelle"; /** Manifest file mapping entity IDs to filesystem paths */ export declare const MANIFEST_FILE_NAME = "manifest.json"; /** Message type for scene sync over WebSocket */ export declare const SCENE_SYNC_TYPE = "phibelle-kit-scene-sync"; /** Message type for clone request from kit to app */ export declare const CLONE_REQUEST_TYPE = "phibelle-kit-clone-request"; /** Message type for clone response from app to kit */ export declare const CLONE_RESPONSE_TYPE = "phibelle-kit-clone-response";