import { StepI } from "../step";
export declare class RemoteCwdStep extends StepI {
    readonly id = "rcwd";
    readonly description = "Sets the current working directory on the remote system. It will be created if it does not exist.";
    readonly requiredParams: string[];
    execute(): Promise<boolean>;
    validate(): boolean;
}
