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