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