///
import * as mongoose from "mongoose";
import { IStatistic, IStatisticProps } from "./StatisticModelGenerator";
export interface ILogProps extends IStatisticProps {
msg: string;
type: string;
}
export interface ILog extends IStatistic, ILogProps {
}
declare var _default: mongoose.Model;
export default _default;