import { SCENE_FILE_NAME } from "../constants.js"; export declare const SCENE_APP_DIR = "app"; export { SCENE_FILE_NAME }; export declare function getSceneAppDir(sceneDir: string): string; export declare function folderExists(folderPath: string): boolean; export declare function createFolder(folderPath: string): void; /** Scene name to folder name: lowercased, spaces to hyphens, safe for filesystem. */ export declare function sceneNameToFolder(name: string): string; /** Find directory containing scene.phibelle with _id === sceneId: check cwd first, then subdirs. */ export declare function findSceneDirBySceneId(cwd: string, sceneId: string): string | null;