import React from 'react'; import './executionParameters.less'; import './executionStatus.less'; export interface IExecutionParametersProps { shouldShowAllParams: boolean; displayableParameters: IDisplayableParameter[]; pinnedDisplayableParameters: IDisplayableParameter[]; } export interface IDisplayableParameter { key: string; value: string; showTruncatedValue?: boolean; valueTruncated?: string; } export declare class ExecutionParameters extends React.Component { constructor(props: IExecutionParametersProps); private toggleParameterTruncation; render(): JSX.Element; }