import type { MittwaldAPIV2 } from "@mittwald/api-client"; import { RenderBaseCommand } from "../../lib/basecommands/RenderBaseCommand.js"; import { ReactNode } from "react"; export type PathParams = MittwaldAPIV2.Paths.V2CustomersCustomerId.Get.Parameters.Path; export declare class Get extends RenderBaseCommand { static description: string; static flags: { [x: string]: import("@oclif/core/interfaces").Flag; }; static args: { "org-id": import("@oclif/core/interfaces").Arg; }; protected render(): ReactNode; }