import { ExecRenderBaseCommand } from "../../../lib/basecommands/ExecRenderBaseCommand.js"; import { ReactNode } from "react"; type Result = { stackId: string; templateId: string; }; export default class Install extends ExecRenderBaseCommand { static summary: string; static description: string; static examples: { description: string; command: string; }[]; static args: { "template-id": import("@oclif/core/interfaces").Arg>; }; static flags: { input: import("@oclif/core/interfaces").OptionFlag; quiet: import("@oclif/core/interfaces").BooleanFlag; "stack-id": import("@oclif/core/interfaces").OptionFlag; }; protected exec(): Promise; protected render({ stackId }: Result): ReactNode; } export {};