export declare class Formatter { static lgth: number; constructor(); static formatObj(line: string, data: any): string; static format(line: string, ...args: any[]): string; static formatText(text: string, length: number): FormatResult; } export interface FormatResult { maxLength: number; lenght: number; text: string; }