import React from 'react'; import type { IExecution } from '../../domain'; export interface ICurrentlyRunningExecutionsProps { currentlyRunningExecutions: IExecution[]; } export declare class CurrentlyRunningExecutions extends React.Component { render(): JSX.Element; }