import type { Answers } from 'inquirer';
import type { Args } from '../../Constants';
import { BaseIntegration } from './BaseIntegration';
/**
 * This class just redirects to the new `nextjs-wizard.ts` flow
 * for anyone calling the wizard without the '-i nextjs' flag.
 */
export declare class NextJs extends BaseIntegration {
    protected _argv: Args;
    constructor(_argv: Args);
    emit(_answers: Answers): Promise<Answers>;
    shouldConfigure(_answers: Answers): Promise<Answers>;
}
