import React from 'react'; import type { StateStore } from '../../state/store'; import type { RunRecord } from '../types'; export declare function RunDetails({ run, stateStore, nowMs, stepsExpanded, artifactView, onCloseArtifacts, }: { run: RunRecord; stateStore: StateStore; nowMs: number; stepsExpanded: boolean; artifactView: boolean; onCloseArtifacts: () => void; }): React.ReactElement;