import type { Answers } from 'inquirer';
import type { Args } from '../../Constants';
import { SentryCli } from '../../Helper/SentryCli';
import { BaseIntegration } from './BaseIntegration';
import { Config } from '../../Types';
export declare class Electron extends BaseIntegration {
    protected _argv: Args;
    protected _sentryCli: SentryCli;
    constructor(_argv: Args);
    emit(answers: Answers & {
        config?: Config;
    }): Promise<Answers>;
    shouldConfigure(_answers: Answers): Promise<Answers>;
    private _checkDep;
}
