import { ExecRenderBaseCommand } from "../../../lib/basecommands/ExecRenderBaseCommand.js"; import { ReactNode } from "react"; export default class Replace extends ExecRenderBaseCommand { static summary: string; static description: string; static examples: { description: string; command: string; }[]; static args: { "installation-id": import("@oclif/core/interfaces").Arg; }; static flags: { purpose: import("@oclif/core/interfaces").OptionFlag; "new-database-id": import("@oclif/core/interfaces").OptionFlag; "admin-user-id": import("@oclif/core/interfaces").OptionFlag; quiet: import("@oclif/core/interfaces").BooleanFlag; }; protected exec(): Promise; protected render(): ReactNode; }