import { LogEntry } from "../spies"; export interface StringFormatterConfig { maxLineLength?: number; } export declare const getStringFormatter: (config: StringFormatterConfig) => (data: Array) => string;