import type { CliArgs, PluginSetupBinding } from './types.js'; /** * Runs the interactive setup wizard that generates a Code PushUp config file. * * All file changes are buffered in a virtual tree rooted at the git root, * then flushed to disk in one step (or skipped on `--dry-run`). */ export declare function runSetupWizard(bindings: PluginSetupBinding[], cliArgs: CliArgs): Promise;