import { Answers } from 'inquirer';
import { Args } from './Constants';
import { WizardOptions } from '../src/utils/types';
/**
 * @deprecated this function is the entry point to the old, step-based wizards located in `lib`.
 * When creating new wizards, we now add them to clack-based wizards under `src`.
 * Therefor, do not call this function anymore.
 * Use `run` from {@link ../src/run.ts} instead.
 */
export declare function run(argv: Args, wizardOptions: WizardOptions): Promise<Answers>;
