/** * ralph-starter github — Interactive GitHub issues wizard * * Guides the user through selecting GitHub issues to work on: * 1. Authenticate (gh CLI or token) * 2. Browse repos + issues or paste a URL * 3. Select issues (multi-select) * 4. Delegate to run command */ export type GitHubWizardOptions = { commit?: boolean; push?: boolean; pr?: boolean; validate?: boolean; maxIterations?: number; agent?: string; }; export declare function githubCommand(options: GitHubWizardOptions): Promise; //# sourceMappingURL=github.d.ts.map