import { format } from '../format'; import type { ClarityConfig, Formatter, LogEntry } from '../types'; export declare class PrettyFormatter implements Formatter { constructor(config: ClarityConfig); format(entry: LogEntry, forFile?: boolean): Promise; formatForFile(entry: LogEntry): Promise; }