import { ExecRenderBaseCommand } from "../../../lib/basecommands/ExecRenderBaseCommand.js"; import React from "react"; import { AppInstallationResult, AppInstaller } from "../../../lib/resources/app/Installer.js"; export declare const phpInstaller: AppInstaller<"site-title" | "document-root" | "set">; export default class InstallPhp extends ExecRenderBaseCommand { static description: string; static flags: import("@oclif/core/interfaces").FlagInput>; static examples: { description: string; command: string; }[]; protected exec(): Promise; protected render(result: AppInstallationResult): React.ReactNode; }