import { LogTokens } from './token'; export interface FormatterSettings { readonly inlineDepth: number; readonly inlineProperties: number; readonly inlineElements: number; readonly inlineBytes: number; readonly clampBytes: number; readonly bytesInLine: number; readonly bytesInGroup: number; } export declare type FormatterConfig = Partial; export declare type formatTokens = (tokens: LogTokens) => string; export declare function formatLevel(level: string): string; export declare function formatCount(count: string): string; export declare function tokensToString(tokens: LogTokens, settings: FormatterSettings): string; export declare function createFormatter(config?: FormatterConfig): formatTokens;