import type { OutputFormat, PresetName } from "../types/audio.js"; export type WizardAction = "smart" | "clean" | "heritage" | "denoise" | "scrub" | "analyze" | "restore" | "vocal" | "compare" | "quit"; export interface WizardPlan { action: Exclude; input: string; output?: string; secondInput?: string; preset: PresetName; format: OutputFormat; preserveLoudness: boolean; vocalAware: boolean; smart: boolean; } export declare function runGuidedWizard(version: string): Promise;