import { IAppInfo } from '../../purchases';
export interface IMonitor {
    id: string;
    companies: {
        id: string;
        name: string;
    }[];
    total: number;
    createdAt: Date;
    app: IAppInfo;
}
