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