import { ExecRenderBaseCommand } from "../../../lib/basecommands/ExecRenderBaseCommand.js"; import React from "react"; import { AppInstallationResult, AppInstaller } from "../../../lib/resources/app/Installer.js"; export declare const wordpressInstaller: AppInstaller<"version" | "host" | "admin-user" | "admin-email" | "admin-pass" | "site-title">; export default class InstallWordPress extends ExecRenderBaseCommand { static description: string; static flags: import("@oclif/core/interfaces").FlagInput>; protected exec(): Promise; protected render(result: AppInstallationResult): React.ReactNode; }