import { type CliError } from "../_utils/cli-error.js"; import { type Result } from "../_utils/result.js"; type Flag = string | boolean | undefined; declare const feedback: (kind: "bug" | "feedback", title: string, options: { description?: Flag; steps?: Flag; severity?: Flag; wants?: Flag; why?: Flag; context?: Flag; from?: Flag; agent?: Flag; proactive?: boolean; }) => Promise>; export { feedback };