import { IOutput } from '../interfaces'; export declare class Output implements IOutput { private verb; debug: (message: string, obj?: unknown) => void; constructor(verb?: boolean, debugMode?: boolean); set verbose(value: boolean); info(message: string): void; error(message: string, exitProcess?: boolean): void; clear(): void; assert(claim: unknown, message: string): void; }