import { default as React, MutableRefObject } from 'react';
import { ITimerRuntime } from '../../core/ITimerRuntime';
import { RuntimeSpan } from '../../core/RuntimeSpan';
interface AnalyticsViewProps {
    results: [RuntimeSpan, boolean][];
    runtime: MutableRefObject<ITimerRuntime | undefined>;
}
export declare const AnalyticsView: React.FC<AnalyticsViewProps>;
export {};
