import { default as React, MutableRefObject } from 'react';
import { RuntimeMetricEdit } from '../../core/RuntimeMetricEdit';
import { ITimerRuntime } from '../../core/ITimerRuntime';
import { RuntimeSpan } from '../../core/RuntimeSpan';
interface ResultsDisplayProps {
    results: RuntimeSpan[];
    runtime: MutableRefObject<ITimerRuntime | undefined>;
    edits: RuntimeMetricEdit[];
    className?: string;
}
export declare const ResultsDisplay: React.FC<ResultsDisplayProps>;
export {};
