/// import type { IExecution, IExecutionStage, ITask, ITaskStep } from '../../domain'; export interface IRunningTasksPopoverContentProps { executions: IExecution[]; tasks: ITask[]; } interface IItemDetailsProps { item: IExecutionStage | ITaskStep; transformName?: boolean; } export declare const ItemDetails: ({ item, transformName }: IItemDetailsProps) => JSX.Element; export declare const RunningTasksPopoverContent: ({ executions, tasks }: IRunningTasksPopoverContentProps) => JSX.Element; export {};