/** Context about the scene for requested objects */ export interface SceneContext { /** User defined display name of the scene */ displayName: string; /** Time the scene was last modified as an ISO8601 string, 'YYYY-MM-DDTHH:mm:ss.sssZ */ lastModified: string; /** Indicates some objects in this scene will be filtered due to insufficient permissions. */ isPartial?: boolean; } export declare const isSceneContext: (v: unknown) => v is SceneContext;