import { IHandlerParameters, AbstractSession } from "@zowe/imperative"; import { INVResponse } from "../../doc"; /** * Class of utility Validate an NetView Automation Table's syntax * * @class Validate */ export declare class Validate { /** * Validate an NetView Automation Table's syntax. * @static * @param {IHandlerParameters} params Command parameters sent by imperative. * @param {string} URIParams - the parameters which need to be appended in REST API URL * @param {AbstractSession} session - representing connection to this api * @memberof Validate */ static validateAT(params: IHandlerParameters, URIParams: string, session: AbstractSession): Promise; }