import { LogFormatter, LogEntry, TextFormatterOptions } from '../types'; /** * Human-readable text formatter */ export declare class TextFormatter implements LogFormatter { private includeStack; private colorize; constructor(options?: TextFormatterOptions); format(entry: LogEntry): string; /** * Applies color codes to log level */ private colorizeLevel; /** * Formats metadata for display */ private formatMetadata; } //# sourceMappingURL=text.d.ts.map