import { IAppInfo } from '../../purchases';
import { IMonitor } from '../interfaces/i-monitor';
export declare class MonitorEntity implements IMonitor {
    id: string;
    companies: {
        id: string;
        name: string;
    }[];
    total: number;
    createdAt: Date;
    app: IAppInfo;
    constructor(data?: Partial<MonitorEntity>);
}
