type ConsoleMethodName = 'error' | 'warn' | 'info' | 'http' | 'verbose' | 'debug' | 'silly' | 'log'; export declare function captureConsoleMethodBackups(): void; export declare function patchConsoleMethod(methodName: ConsoleMethodName, patchedMethod: (...args: any[]) => void): void; export declare function restoreConsoleMethodBackups(): void; export declare function writeOutput(text: string): void; export declare function nativeConsoleLog(...args: any[]): void; export declare function logLastResortProcessingError(functionName: string, err: Error): void; export declare function isHandlingInternalWriteFeedback(): boolean; export {};