import React from 'react'; import type { IExecution, IPipeline } from '../../domain'; export interface IParametersAndArtifactsProps { execution: IExecution; pipelineConfig: IPipeline; expandParamsOnInit: boolean; } export interface IParametersAndArtifactsState { showingParams: boolean; } export declare class ParametersAndArtifacts extends React.Component { constructor(props: IParametersAndArtifactsProps); private toggleParams; private getDisplayableParameters; private getLabel; render(): JSX.Element; }