import { ExecRenderBaseCommand } from "../../lib/basecommands/ExecRenderBaseCommand.js"; import { ReactNode } from "react"; type Result = { volumeName: string; stackId: string; }; export declare class Create extends ExecRenderBaseCommand { static summary: string; static description: string; static flags: { quiet: import("@oclif/core/interfaces").BooleanFlag; "project-id": import("@oclif/core/interfaces").OptionFlag; }; static args: { name: import("@oclif/core/interfaces").Arg>; }; protected exec(): Promise; protected render({ volumeName }: Result): ReactNode; } export {};