import { ICommandHandler, IHandlerParameters } from "@zowe/imperative";
import { ZosConnectSession } from "../ZosConnectSession";
export declare abstract class ZosConnectBaseHandler implements ICommandHandler {
    protected session: ZosConnectSession;
    process(commandParameters: IHandlerParameters): Promise<void>;
    abstract processCmd(commandParameters: IHandlerParameters): Promise<void>;
}
