import { StepI } from "../step";
export declare class EnvironmentStep extends StepI {
    readonly id = "env";
    readonly description = "Sets the environment variables for the connected IBM i based on the host";
    readonly requiredParams: string[];
    execute(): Promise<boolean>;
}
