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