import type { IComponentOptions } from 'angular'; import type { IStageConstant } from './stages/stageConstants'; export interface ITargetSelectProps { options: IStageConstant[]; model: { target: string; }; onChange(target: string): void; } export declare const targetSelectComponent: IComponentOptions; export declare const TARGET_SELECT_COMPONENT = "spinnaker.pipeline.targetSelect.component";