/** Core */ import { Style } from "cmf.core/src/domain/metadata/style"; /** Interface definitions and Bags */ import { ExecutionViewTabDef } from "../executionViewTab/executionViewTabDef"; /** * Execution View POJO that is used to distribute to all sub components of the execution view: header, body and footer. */ export declare class ExecutionViewBag implements Style { title: string; iconClass: string; indexTransient: number; /** * Footer main action name */ executeActionName: string; /** * Footer secondary action name */ secondaryActionName: string; /** * Footer cancel action name */ cancelActionName: string; /** * Footer secondary action icon */ secondaryActionIcon?: string; tabs: Array; /** * Execution View visible tabs (has some logic which is not desirable) */ readonly visibleTabs: Array; }