import { StepI } from "../step";
export declare class CommandStep extends StepI {
    readonly id = "cmd";
    readonly description = "Execute a command on the remote system";
    readonly requiredParams: string[];
    execute(): Promise<boolean>;
    validateParameters(): boolean;
}
