/**
 * @typedef {import('commander').Command} Command
 */
/**
 * Bug: `npx bananass bug` command.
 * @param {Command} program The `commander` package's `program`.
 */
export default function bug(program: Command): void;
export type Command = import("commander").Command;
