import { ExecRenderBaseCommand } from "../../lib/basecommands/ExecRenderBaseCommand.js"; import { ReactNode } from "react"; interface DeployResult { restartedServices: string[]; } export declare class Deploy extends ExecRenderBaseCommand { static description: string; static aliases: string[]; static flags: { "compose-file": import("@oclif/core/interfaces").OptionFlag; "env-file": import("@oclif/core/interfaces").OptionFlag; quiet: import("@oclif/core/interfaces").BooleanFlag; "stack-id": import("@oclif/core/interfaces").OptionFlag; }; protected exec(): Promise; protected render({ restartedServices }: DeployResult): ReactNode; } export {};