//#region extensions/crypto/src/commands/report-command.d.ts /** * /report, /report_opt_in, /report_opt_out commands. * * /report — File a GitHub issue (requires opt-in) * /report_opt_in — Enable issue reporting for this user * /report_opt_out — Disable issue reporting * * The agent is instructed to proactively suggest /report when it detects * bugs, errors, or UX problems. The user must opt in first. */ declare const reportCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx?: any) => Promise<{ text: string; }>; }; declare const reportOptInCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx?: any) => Promise<{ text: string; }>; }; declare const reportOptOutCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx?: any) => Promise<{ text: string; }>; }; //#endregion export { reportCommand, reportOptInCommand, reportOptOutCommand }; //# sourceMappingURL=report-command.d.mts.map