import type { MittwaldAPIV2 } from "@mittwald/api-client"; import { RenderBaseCommand } from "../../lib/basecommands/RenderBaseCommand.js"; import React from "react"; type DomainDomain = MittwaldAPIV2.Components.Schemas.DomainDomain; export declare class Get extends RenderBaseCommand { static description: string; static flags: { [x: string]: import("@oclif/core/interfaces").Flag; }; static args: { "project-id": import("@oclif/core/interfaces").Arg; "domain-id": import("@oclif/core/interfaces").Arg; }; protected render(): React.ReactNode; protected getDomain(): Promise; } export {};