export declare enum OutputFormat { JSON = "json", PRETTY = "pretty" } export declare function outputJson(data: any): void; export declare function outputPretty(data: any, headers?: string[]): void; export declare function success(message: string): void; export declare function error(message: string): void; export declare function info(message: string): void; export declare function warn(message: string): void; //# sourceMappingURL=output.d.ts.map