/** * Handler for Logger that just ignores all logging output */ export declare class NullLoggerHandler { error(..._args: string[]): void; info(..._args: string[]): void; log(..._args: string[]): void; debug(..._args: string[]): void; }