import type { MrtLogEntry } from '@salesforce/b2c-tooling-sdk/operations/mrt'; /** * Options for formatting an MRT log entry. */ export interface FormatMrtEntryOptions { /** Whether to use ANSI color codes. */ useColor: boolean; /** Regex to highlight matches in the message. */ searchHighlight?: RegExp; } /** * Colorizes a log level name using its level color + bold. */ export declare function colorLevel(level: string): string; /** * Colorizes text with the search highlight style (bold yellow). */ export declare function colorHighlight(text: string): string; /** * Formats an MRT log entry for terminal display. * * Output format: * ``` * LEVEL [timestamp] [shortRequestId] * message * ``` */ export declare function formatMrtEntry(entry: MrtLogEntry, options: FormatMrtEntryOptions): string;