/** * Handle bug and feedback reporting * @param message - The bug or feedback message (optional). If provided, prepares a pre-filled issue. * @param options - Command options including type (bug, feature, metric) and submit (boolean to submit via gh CLI) */ export declare function bugAction( message: string | undefined, options: any ): Promise; export declare const BUG_HELP_TEXT = '\nEXAMPLES:\n $ aiready bug # Show general links\n $ aiready bug "Naming check is too slow" # Prepare a pre-filled bug report\n $ aiready bug "Add CO2 impact metric" --type metric # Prepare a metric suggestion\n $ aiready bug "Fix typo in scan output" --submit # Submit directly via gh CLI\n'; //# sourceMappingURL=bug.d.ts.map