import type { Answers } from 'inquirer'; import type { Args } from '../Constants'; import type { IStep } from '../Steps/BaseStep'; import type { BaseIntegration } from '../Steps/Integrations/BaseIntegration'; export declare function getCurrentIntegration(answers: Answers): BaseIntegration; export declare function startWizard(argv: Args, ...steps: Array<{ new (debug: Args): M; }>): Promise;