///
import * as mongoose from "mongoose";
import { IStatistic, IStatisticProps } from "../../models/StatisticModelGenerator";
export interface IExecutionMarkerProps extends IStatisticProps {
executionEnd: number;
executionStart: number;
requestId: string;
}
export interface IExecutionMarker extends IStatistic, IExecutionMarkerProps {
json: () => IExecutionMarkerProps;
}
declare let ExecutionMarkers: mongoose.Model;
export default ExecutionMarkers;