import { Session } from "@zowe/imperative";
import { IElementBasicData, IEndevorRestResponse, IElementActionRequestOptions, DeleteElmDictionary, IEndevorAsyncTask } from "../index";
export declare class DeleteElement {
    static setupDeleteRequest(args: DeleteElmDictionary): IElementActionRequestOptions;
    static deleteElement(session: Session, instance: string, element: IElementBasicData, requestBody: IElementActionRequestOptions): Promise<IEndevorRestResponse<void>>;
    static deleteElementAsync(session: Session, instance: string, element: IElementBasicData, requestBody: IElementActionRequestOptions): Promise<IEndevorRestResponse<IEndevorAsyncTask>>;
}
