import { type Config } from '@oclif/core/config';
interface PromptOptions {
    argv: string[];
    commandId: string;
    config: Config;
}
/**
 * Interactively prompts the user for command arguments and flags,
 * then re-runs the command with the collected inputs.
 */
export declare function promptAndRun(options: PromptOptions): Promise<void>;
export {};
