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 CreateResult = { ingress: IngressIngress; }; export default class Create extends ExecRenderBaseCommand { static description: string; static examples: { description: string; command: string; }[]; 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; hostname: import("@oclif/core/interfaces").OptionFlag; "project-id": import("@oclif/core/interfaces").OptionFlag; quiet: import("@oclif/core/interfaces").BooleanFlag; }; protected exec(): Promise; protected render({ ingress }: CreateResult): ReactNode; } export {};