import { IBundleWriteResponse } from '../bundle/Bundle';
import { Context } from '../core/Context';
export declare class ElectronLauncher {
    ctx: Context;
    response: Array<IBundleWriteResponse>;
    electronPath: string;
    private node;
    constructor(ctx: Context, response: Array<IBundleWriteResponse>, electronPath: string);
    kill(): void;
    handleMainProcess(): void;
}
