import { ITimeSpan } from './ITimeSpan';
import { RuntimeMetric } from './RuntimeMetric';
export declare class RuntimeSpan {
    blockId?: string;
    blockKey?: string;
    index?: number;
    duration?: number | undefined;
    timeSpans: ITimeSpan[];
    metrics: RuntimeMetric[];
    leaf?: boolean;
}
