///
import * as mongoose from "mongoose";
import { IStatistic, IStatisticProps } from "./StatisticModelGenerator";
export interface IInspectionErrorProps extends IStatisticProps {
error: string;
transactionId: string;
}
export interface IInspectionError extends IStatistic, IInspectionErrorProps {
json: () => IInspectionErrorProps;
}
declare let InspectionError: mongoose.Model;
export default InspectionError;