import { StepI } from "../step";
export declare class LocalCwdStep extends StepI {
    readonly id = "lcwd";
    readonly description = "Sets the current working directory on the local system";
    readonly requiredParams: string[];
    execute(): Promise<boolean>;
    validate(): boolean;
}
