import { TagMinimal } from "../tag/tagMinimal.js"; export interface SceneMinimal { /** Unique identifier for the scene (UUID). */ id: string; /** Optional parent Id for the scene (UUID) */ parentId?: string; /** User defined display name of the scene */ displayName: string; /** Optional detailed description of the scene */ description?: string; /** Id of the user who created the scene (UUID). */ createdById: string; /** iTwin Id associated with the scene (UUID). */ iTwinId: string; /** Time the scene was created as an ISO8601 string, 'YYYY-MM-DDTHH:mm:ss.sssZ'. */ creationTime: string; /** Time the scene was last modified as an ISO8601 string, 'YYYY-MM-DDTHH:mm:ss.sssZ'. */ lastModified: string; /** Tags associated with this scene */ tags: TagMinimal[]; } export declare function isSceneMinimal(v: unknown): v is SceneMinimal;