/// import type { IPipeline } from '../../../../domain'; import type { IModalComponentProps } from '../../../../presentation'; import './showHistory.less'; export interface IShowHistoryModalProps extends IModalComponentProps { currentConfig: IPipeline; isStrategy: boolean; pipelineConfigId: string; } export declare function ShowPipelineHistoryModal(props: IShowHistoryModalProps): JSX.Element;