import { ExecRenderBaseCommand } from "../../../lib/basecommands/ExecRenderBaseCommand.js"; import { ReactNode } from "react"; import type { MittwaldAPIV2 } from "@mittwald/api-client"; type IngressIngress = MittwaldAPIV2.Components.Schemas.IngressIngress; type UpdateResult = { ingress: IngressIngress; }; export default class Update extends ExecRenderBaseCommand { static description: string; static examples: { description: string; command: string; }[]; static args: { "virtual-host-id": import("@oclif/core/interfaces").Arg>; }; static flags: { "path-to-app": import("@oclif/core/interfaces").OptionFlag; "path-to-url": import("@oclif/core/interfaces").OptionFlag; "path-to-container": import("@oclif/core/interfaces").OptionFlag; quiet: import("@oclif/core/interfaces").BooleanFlag; }; protected exec(): Promise; protected render({ ingress }: UpdateResult): ReactNode; } export {};