export declare class BackgroundProcess {
    constructor();
    protected p_blobUrl: string;
    protected p_worker: Worker;
    protected p_function: Function;
    run(data: any): void;
    create(): void;
    destroy(): void;
}
export default BackgroundProcess;
