import { SceneObjectCreate } from "../object/sceneObjectCreate.js"; export interface SceneDataCreate { /** Array of scene objects */ objects: SceneObjectCreate[]; } export interface SceneCreate { /** Optional identifier for the scene object (UUID) */ id?: string; /** User defined display name of the scene */ displayName: string; /** Optional detailed description of the scene */ description?: string; /** Optional parent Id for the scene (UUID) */ parentId?: string; /** Optional list of tag Ids to apply to this scene. Tags must exist in the same iTwin as the scene itself. */ tagIds?: string[]; /** Scene informational objects */ sceneData?: SceneDataCreate; } export declare function isSceneDataCreate(v: unknown): v is SceneDataCreate;