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; shouldConfigure(_answers: Answers): Promise; private _checkDep; }