export declare class BackgroundProcess {
static readonly TYPE_UNDEFINED: string;
process: Promise<any>;
startTime: Date;
type: string;
name: string;
result: any;
error: any;
constructor(process: Promise<any>, processType: string, name: string, startTime?: Date);
}