import { ReactNode } from "react"; import { RenderBaseCommand } from "../../lib/basecommands/RenderBaseCommand.js"; import { GetFormatter } from "../../rendering/formatter/GetFormatter.js"; 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; }; protected formatter: GetFormatter; protected render(): ReactNode; }