import { SceneExecutionStatus } from '../scenes.constants'; export declare class ActionExecutionResultModel { actionId: string; success: boolean; error?: string | null; executionTimeMs: number; } export declare class SceneExecutionResultModel { sceneId: string; status: SceneExecutionStatus; triggeredAt: string; completedAt?: string | null; triggeredBy?: string | null; totalActions: number; successfulActions: number; failedActions: number; actionResults: ActionExecutionResultModel[]; error?: string | null; }