import type { IComponentOptions, IController, IScope } from 'angular'; import type { Application } from '../../application'; import type { IExecution, IExecutionStage, IStageTypeConfig } from '../../domain'; export declare class StepExecutionDetailsController implements IController { private $scope; application: Application; config: IStageTypeConfig; configSections: string[]; execution: IExecution; sourceUrl: string; stage: IExecutionStage; static $inject: string[]; constructor($scope: IScope); $onInit(): void; $onChanges(): void; private updateScope; } export declare const stepExecutionDetailsComponent: IComponentOptions; export declare const STEP_EXECUTION_DETAILS_COMPONENT = "spinnaker.core.pipeline.stepExecutionDetails.component";