import React from 'react'; import type { Application } from '../../application/application.model'; import type { IServerGroup } from '../../domain'; export interface IRunningTasksProps { application: Application; serverGroup: IServerGroup; } export declare class RunningTasks extends React.Component { render(): JSX.Element; }