import { ListPkgDictionary, IListActionRequestOptions, IEndevorRestResponse, IEndevorPackage, IEndevorAsyncTask } from "../index"; import { Session } from "@zowe/imperative"; export declare class ListPackage { static setupListPackageRequest(args: ListPkgDictionary): IListActionRequestOptions; static listPackage(session: Session, instance: string, packageName: string, requestBody: IListActionRequestOptions): Promise>; static listPackageAsync(session: Session, instance: string, packageName: string, requestBody: IListActionRequestOptions): Promise>; static isNoMatch(returnCode: number, listPackageResult: IEndevorPackage[], messages: string[]): boolean; }