import { JSONObject, JSONValue } from './types'; export declare function printDebug(message: string): void; export declare function printRequest(func: string, url: string, config?: JSONObject, data?: JSONValue | string, response?: JSONValue): void; export declare function printError(message: string | unknown, stdout?: Console): void; export declare function printWarning(message: string): void; export declare function printStream(message: string, ...args: unknown[]): void; export declare function fatalError(message: string): void;