import { BaseDocument } from "../base/baseModel";
export declare type Activity = {
userId?: string;
customerId?: string;
factorId?: string;
message?: string;
type?: string;
changedFactor?: string;
};
export declare type IActivity = BaseDocument & Activity;