import { Session } from "@zowe/imperative";
import { IElementBasicData, IEndevorRestResponse, IElementActionRequestOptions, TransferElmDictionary, IEndevorAsyncTask } from "../index";
export declare class TransferElement {
    static transferElement(session: Session, instance: string, element: IElementBasicData, requestBody: IElementActionRequestOptions): Promise<IEndevorRestResponse<void>>;
    static transferElementAsync(session: Session, instance: string, element: IElementBasicData, requestBody: IElementActionRequestOptions): Promise<IEndevorRestResponse<IEndevorAsyncTask>>;
    static setupTransferRequest(args: TransferElmDictionary, fromLocation: IElementBasicData): IElementActionRequestOptions;
}
