export type InstallerArgs = { debug?: boolean; forceInstall?: boolean; installDir?: string; default?: boolean; local?: boolean; ci?: boolean; skipAuth?: boolean; apiKey?: string; clientId?: string; homepageUrl?: string; redirectUri?: string; dashboard?: boolean; inspect?: boolean; noValidate?: boolean; validate?: boolean; noCommit?: boolean; commit?: boolean; noBranch?: boolean; branch?: boolean; createPr?: boolean; noGitCheck?: boolean; gitCheck?: boolean; direct?: boolean; scaffold?: boolean; pm?: string; }; /** * Main entry point for the wizard CLI. * Builds options from args and delegates to the core. */ export declare function runInstaller(argv: InstallerArgs): Promise;