export declare enum LogType { CHAI_DIFF = "chai-diff", CHAI_MESSAGE = "chai-message", ERROR = "error" } interface ChaiDiffLog { type: LogType.CHAI_DIFF; expected: unknown; actual: unknown; } interface ChaiMessageLog { type: LogType.CHAI_MESSAGE; message: string; } interface ErrorLog { type: LogType.ERROR; message: string; } export type ParsedLog = ChaiDiffLog | ChaiMessageLog | ErrorLog; export declare const parseLogEntry: (log: string) => ParsedLog | null; export declare const formatValue: (value: unknown) => string; export declare const assertStyles: (text: string) => { color: string; fontWeight: string; } | { color?: undefined; fontWeight?: undefined; }; export declare const getDisplayText: (log: string, parsedLog: ParsedLog | null) => string; export {};