import { IHandlerParameters } from "@zowe/imperative"; export declare enum OutputFormat { TABULAR = 0, CSV = 1, JSON = 2, XML = 3 } export declare class OutputProcessor { static arrayToXml(data: any[], fields: string[]): string; private static readonly CSV_SEPARATOR; private static readonly JSON_INDENTATION; private static serializeCsvPrimitive; private static serializeXmlPrimitive; private static serializeArray; private static filterArray; private static filterObject; private readonly response; private readonly args; constructor(parameters: IHandlerParameters); arrayToCsv(data: any[], fields: string[], header?: boolean): string[]; data(data: any): void; info(message: string): void; warning(message: string): void; error(baseMessage: string, error: Error): void; }