import type { LogEvent } from "./logEvents.js"; import type { SymbolicatedFrame } from "./symbolicate.js"; export interface RowOptions { showDevice: boolean; maxLength?: number; verbose?: boolean; frames?: Map; } export declare function formatEventRow(event: LogEvent, opts: RowOptions): string; export declare function formatEventList(events: LogEvent[], opts: RowOptions): string; export declare function formatEventDetails(event: LogEvent, opts: { maxLength: number; verbose: boolean; }): string; //# sourceMappingURL=logEventFormat.d.ts.map