import React from 'react'; import type { IExecution } from '../../domain'; import './ExecutionBuildLink.less'; export interface IExecutionBuildLinkProps { execution: IExecution; } export declare class ExecutionBuildLink extends React.Component { constructor(props: IExecutionBuildLinkProps); private handleBuildInfoClick; render(): JSX.Element; private getBuildText; private getBuildLink; }