import { StepI } from "../step";
export declare class PushStep extends StepI {
    readonly id = "push";
    readonly description = "Pushes the current working directory to a chosen directory on the IBM i";
    readonly requiredParams: string[];
    execute(): Promise<boolean>;
}
