import { DeleteBaseCommand } from "../../lib/basecommands/DeleteBaseCommand.js"; /** * Maps an error raised while uninstalling an app installation to a more * actionable one. The API answers with an HTTP 412 (Precondition Failed) when * the app still has a linked _primary_ database. We therefore require both the * precondition status and a matching error signature before rewriting the * message, so unrelated 412 cases are not accidentally swallowed. */ export declare function mapUninstallError(err: unknown): unknown; export default class Uninstall extends DeleteBaseCommand { static description: string; static resourceName: string; static args: { "installation-id": import("@oclif/core/interfaces").Arg; }; protected deleteResource(): Promise; }