import type { CliArgs } from "../../lib/types.mjs"; type WizardFlagValue = string | boolean | readonly string[] | undefined; type WizardFlags = Readonly>; export declare function parseFlags(args: CliArgs): Record; export declare function buildPythonArgs(sub: string, flags: WizardFlags, workspaceRoot?: string): string[]; export declare function orderedRenderArgv(renderArgs: Readonly>): string[]; export declare function run(args: readonly string[]): Promise; export {};