import { IHandlerParameters } from "@zowe/imperative";
export declare class CA7ResponseUtil {
    /**
     * Method to log the response with command, Ca7Messages and CA7#
     * @param {IHandlerParameters} params
     * @param ca7Response
     * @returns {Promise<void>}
     * @memberof CA7ResponseUtil
     */
    static responseWithCommandMessageCa7(params: IHandlerParameters, ca7Response: any): void;
    /**
     * Method to log the response with command, Ca7Messages
     * @param {IHandlerParameters} params
     * @param ca7Response
     * @returns {Promise<void>}
     * @memberof CA7ResponseUtil
     */
    static responseWithCommandMessage(params: IHandlerParameters, ca7Response: any): void;
    /**
     * Method to log the response with command, Ca7Messages
     * @param {IHandlerParameters} params
     * @param ca7Response
     * @returns {Promise<void>}
     * @memberof CA7ResponseUtil
     */
    static responseWithCa7Message(params: IHandlerParameters, ca7Response: any): void;
    /**
     * Method to log the response with command, Ca7Messages and CA7#
     * @param {IHandlerParameters} params
     * @param ca7Response
     * @returns {Promise<void>}
     * @memberof CA7ResponseUtil
     */
    static responseWithMessage(params: IHandlerParameters, ca7Response: any): void;
    /**
     * Method to log the response with jobs and job-count
     * @param {IHandlerParameters} params
     * @param ca7Response
     * @returns {Promise<void>}
     * @memberof CA7ResponseUtil
     */
    static responseWithJobCountJobs(params: IHandlerParameters, ca7Response: any): void;
    /**
     * Method to log the response with jobs, Database name, count, and timestamp
     * @param {IHandlerParameters} params
     * @param ca7Response
     * @returns {Promise<void>}
     * @memberof CA7ResponseUtil
     */
    static responseWithJobsDBCountTime(params: IHandlerParameters, ca7Response: any): void;
    static responseWithCountJobResource(params: IHandlerParameters, ca7Response: any): void;
    /**
     * Method to log the response with JSON response from CA7 REST client
     * @param {IHandlerParameters} params
     * @param ca7Response
     * @returns {Promise<void>}
     * @memberof CA7ResponseUtil
     */
    static responseWithJSON(params: IHandlerParameters, ca7Response: any): void;
}
